about summary refs log tree commit diff stats
path: root/hosts
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-03-23 20:43:06 +0100
committerSoispha <soispha@vhack.eu>2024-03-23 20:43:06 +0100
commit40bdcae54a2dec676993672d8a06a1bc75ec368c (patch)
treeb88ddf83559f4db4e95af7d6bf8493f4d6b52d3a /hosts
parentbuild(treewide): Update (diff)
downloadnixos-config-40bdcae54a2dec676993672d8a06a1bc75ec368c.tar.gz
nixos-config-40bdcae54a2dec676993672d8a06a1bc75ec368c.zip
refactor(treewide): Update to new modules names (and simplify some code)
Diffstat (limited to 'hosts')
-rw-r--r--hosts/marduk/hardware/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/marduk/hardware/default.nix b/hosts/marduk/hardware/default.nix
index 726e27a1..4fed1d06 100644
--- a/hosts/marduk/hardware/default.nix
+++ b/hosts/marduk/hardware/default.nix
@@ -12,7 +12,8 @@
 
   boot = {
     kernelModules = ["rtw89"];
+    # FIXME: The kernel version should probably be updated, considering that it's 6.1 <2024-03-23>
     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
+    zfs.package = pkgs.zfs_unstable; # Default zfs is "broken" (to nixos) on the newest kernel
   };
 }