Freya: mount raid

This commit is contained in:
Filippo Berto 2023-11-22 15:22:20 +01:00
parent 49273031e4
commit 1684249d8e
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

@ -4,7 +4,7 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "uas" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "uas" "usb_storage" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ]; boot.kernelModules = [ ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
@ -14,6 +14,11 @@
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/mnt/raid" = {
device = "/dev/disk/by-uuid/d3d487e9-4ed8-4a1e-9abc-ebb0c1dc80d9";
fsType = "btrfs";
};
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking