extra drive for BICEP

This commit is contained in:
Aria Nolan 2023-12-21 01:36:08 -05:00
parent a38427d539
commit 0e10b72290

View file

@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
@ -23,6 +23,11 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/mnt/secondary" =
{ device = "/dev/disk/by-uuid/7408a47c-4fe5-482f-84f0-fa27d86570fc";
fsType = "ext4";
};
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/614e4b01-8946-44fc-a4b3-d53499f29a3e"; } [ { device = "/dev/disk/by-uuid/614e4b01-8946-44fc-a4b3-d53499f29a3e"; }
]; ];