about summary refs log tree commit diff stats
path: root/hosts
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-27 17:10:49 +0200
committerSoispha <soispha@vhack.eu>2023-05-27 17:10:49 +0200
commitb63410809c9339b30e3d586e7571fd8d37cc406d (patch)
treef8fda0a042b3e7a765f9e467f0b3b01149b937b5 /hosts
parentBuild(flake): Update (diff)
downloadnixos-config-b63410809c9339b30e3d586e7571fd8d37cc406d.tar.gz
nixos-config-b63410809c9339b30e3d586e7571fd8d37cc406d.zip
Fix(hosts/marduk): Use compatible kernel for zfs
Diffstat (limited to 'hosts')
-rw-r--r--hosts/marduk/hardware/default.nix2
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
   };
 }