about summary refs log tree commit diff stats
path: root/hosts
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-28 16:41:02 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:32:55 +0200
commit83a76f90541f96dd2f3b73872cccfbf820f5c335 (patch)
treee80ee55b05b4a9c36b3d2537207e64673a437fc1 /hosts
parentChore(treewide): Update (diff)
downloadnixos-config-83a76f90541f96dd2f3b73872cccfbf820f5c335.tar.gz
nixos-config-83a76f90541f96dd2f3b73872cccfbf820f5c335.zip
Fix(hosts/marduk): Pin kernel version
Zfs needs some time, until it supports the newest kernels.
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 3a7b0a0a..d584d93d 100644
--- a/hosts/marduk/hardware/default.nix
+++ b/hosts/marduk/hardware/default.nix
@@ -13,7 +13,7 @@
 
   boot = {
     kernelModules = ["rtw89"];
-    kernelPackages = pkgs.linuxPackages_latest;
+    kernelPackages = pkgs.linuxPackages_6_2; # use this kernel, as it's supported by zfs
     zfs.enableUnstable = true; # Default zfs is "broken" (to nixos) on the newest kernel
   };
 }