diff --git a/hosts/BICEP/hardware-configuration.nix b/hosts/BICEP/hardware-configuration.nix index 2dc775f..5b7997a 100644 --- a/hosts/BICEP/hardware-configuration.nix +++ b/hosts/BICEP/hardware-configuration.nix @@ -8,7 +8,7 @@ [ (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.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; @@ -23,6 +23,11 @@ fsType = "vfat"; }; + fileSystems."/mnt/secondary" = + { device = "/dev/disk/by-uuid/7408a47c-4fe5-482f-84f0-fa27d86570fc"; + fsType = "ext4"; + }; + swapDevices = [ { device = "/dev/disk/by-uuid/614e4b01-8946-44fc-a4b3-d53499f29a3e"; } ];