diff options
author | Soispha <soispha@vhack.eu> | 2024-03-23 20:43:06 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-23 20:43:06 +0100 |
commit | 40bdcae54a2dec676993672d8a06a1bc75ec368c (patch) | |
tree | b88ddf83559f4db4e95af7d6bf8493f4d6b52d3a /hosts | |
parent | build(treewide): Update (diff) | |
download | nixos-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.nix | 3 |
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 }; } |