aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/arrakis
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-10-12 18:23:44 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-10-12 18:23:44 -0700
commit0d76fd8424129fcf7e7efbcd877bfaf80161f200 (patch)
treeee204b750c4abe1cbda4612b54694c301652268b /hosts/arrakis
parent8f7a70bbcad00889634fe489ed6980c4eba9e153 (diff)
downloadnix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.tar
nix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.tar.gz
nix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.tar.bz2
nix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.tar.lz
nix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.tar.xz
nix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.tar.zst
nix-0d76fd8424129fcf7e7efbcd877bfaf80161f200.zip
Add data zpool
Diffstat (limited to 'hosts/arrakis')
-rw-r--r--hosts/arrakis/hardware-configuration.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/hosts/arrakis/hardware-configuration.nix b/hosts/arrakis/hardware-configuration.nix
index 4583468..4e67e65 100644
--- a/hosts/arrakis/hardware-configuration.nix
+++ b/hosts/arrakis/hardware-configuration.nix
@@ -8,10 +8,13 @@
[ #(modulesPath + "/installer/scan/not-detected.nix")
];
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
+ boot = {
+ extraModulePackages = [ ];
+ initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ];
+ initrd.kernelModules = [ ];
+ kernelModules = [ "kvm-amd" ];
+ zfs.extraPools = [ "data" ];
+ };
fileSystems."/" =
{ device = "rpool/local/root";