diff --git a/configuration/main/hardware-configuration.nix b/configuration/main/hardware-configuration.nix index 66dfb14..dc8dc59 100644 --- a/configuration/main/hardware-configuration.nix +++ b/configuration/main/hardware-configuration.nix @@ -8,7 +8,7 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "ata_generic" "ehci_pci" "ahci" "nvme" "usbhid" "usb_storage" "uas" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "ata_generic" "ehci_pci" "ahci" "nvme" "usbhid" "uas" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; @@ -23,6 +23,16 @@ fsType = "ext4"; }; + fileSystems."/mnt/500G-disk" = + { device = "/dev/disk/by-uuid/1a899f03-4c6a-460a-9635-c4b208b29fba"; + fsType = "ext4"; + }; + + fileSystems."/mnt/verbatim" = + { device = "/dev/disk/by-uuid/2aa5f849-1df0-4f3a-b7db-ef64d06b16e4"; + fsType = "ext4"; + }; + swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";