diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-12-18 08:31:25 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-12-18 08:31:25 -0800 |
commit | 41595db981b5a67cb1017a2ce89ea0ea11aa13a6 (patch) | |
tree | 07eaf818da7237b4c375c4e7edaac118009de6d7 /hosts/richese/default.nix | |
parent | f8a7049c65d56ca910b2bb29f7f8f63941b7f34f (diff) | |
download | nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.tar nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.tar.gz nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.tar.bz2 nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.tar.lz nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.tar.xz nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.tar.zst nix-41595db981b5a67cb1017a2ce89ea0ea11aa13a6.zip |
Revert to unstable now that 6.12.5 has landed
Diffstat (limited to 'hosts/richese/default.nix')
-rw-r--r-- | hosts/richese/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index 15f58b3..2a97fc4 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/default.nix @@ -1,12 +1,12 @@ { config, inputs, lib, outputs, pkgs, ... }: { boot = { initrd.kernelModules = [ "zfs" ]; - kernelPackages = pkgs.master.linuxPackages_6_12; + kernelPackages = pkgs.linuxPackages_6_12; loader.grub.enable = true; supportedFilesystems = [ "zfs" ]; zfs = { devNodes = "/dev/disk/by-label"; - package = pkgs.master.zfs; + #package = pkgs.master.zfs; }; }; |