diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-12-11 22:34:22 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-12-11 22:34:22 -0800 |
commit | f223a2d4db73bde986289fc356f1e02ddcba8580 (patch) | |
tree | da6b7510347e7d4fff6d562bdfe13681fe8d2045 | |
parent | 9b2857d9d50746de6f96e6c6f60806448b607b92 (diff) | |
download | nix-f223a2d4db73bde986289fc356f1e02ddcba8580.tar nix-f223a2d4db73bde986289fc356f1e02ddcba8580.tar.gz nix-f223a2d4db73bde986289fc356f1e02ddcba8580.tar.bz2 nix-f223a2d4db73bde986289fc356f1e02ddcba8580.tar.lz nix-f223a2d4db73bde986289fc356f1e02ddcba8580.tar.xz nix-f223a2d4db73bde986289fc356f1e02ddcba8580.tar.zst nix-f223a2d4db73bde986289fc356f1e02ddcba8580.zip |
Switch to ZFS 2.2.7 @ginaz
-rw-r--r-- | hosts/ginaz/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hosts/ginaz/default.nix b/hosts/ginaz/default.nix index 68dc8b1..05f477c 100644 --- a/hosts/ginaz/default.nix +++ b/hosts/ginaz/default.nix @@ -1,12 +1,14 @@ { config, inputs, outputs, pkgs, ... }: { boot = { initrd.kernelModules = [ "amdgpu" "zfs" ]; + kernelPackages = pkgs.master.linuxPackages_6_12; loader = { efi.canTouchEfiVariables = true; systemd-boot.enable = true; timeout = 3; }; supportedFilesystems = [ "zfs" ]; + zfs.package = pkgs.master.zfs; }; environment.systemPackages = with pkgs; [ |