diff options
author | Soispha <soispha@vhack.eu> | 2023-05-27 17:10:49 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-27 17:10:49 +0200 |
commit | b63410809c9339b30e3d586e7571fd8d37cc406d (patch) | |
tree | f8fda0a042b3e7a765f9e467f0b3b01149b937b5 | |
parent | Build(flake): Update (diff) | |
download | nixos-config-b63410809c9339b30e3d586e7571fd8d37cc406d.tar.gz nixos-config-b63410809c9339b30e3d586e7571fd8d37cc406d.zip |
Fix(hosts/marduk): Use compatible kernel for zfs
-rw-r--r-- | hosts/marduk/hardware/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/marduk/hardware/default.nix b/hosts/marduk/hardware/default.nix index d584d93d..4c954bae 100644 --- a/hosts/marduk/hardware/default.nix +++ b/hosts/marduk/hardware/default.nix @@ -13,7 +13,7 @@ boot = { kernelModules = ["rtw89"]; - kernelPackages = pkgs.linuxPackages_6_2; # use this kernel, as it's supported by zfs + kernelPackages = pkgs.linuxPackages_6_1; # use this kernel, as it's supported by zfs zfs.enableUnstable = true; # Default zfs is "broken" (to nixos) on the newest kernel }; } |