Skip to content

Commit

Permalink
add nfs and zfs support for polaris
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetrucciani committed Dec 31, 2024
1 parent 79137f6 commit b3a0a81
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions hosts/polaris/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@
(modulesPath + "/installer/scan/not-detected.nix")
];

boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
boot = {
initrd = {
availableKernelModules = [ "ahci" "xhci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
supportedFilesystems = [ "nfs" ];
kernelModules = [ "nfs" ];
};
kernelModules = [ ];
extraModulePackages = [ ];
supportedFilesystems = [ "nfs" "zfs" ];
};

fileSystems."/" = {
device = "/dev/disk/by-uuid/628eb25a-ec4f-4f73-84a7-8a96c335d47a";
Expand Down

0 comments on commit b3a0a81

Please sign in to comment.