diff --git a/machines/pericyte/hardware-configuration.nix b/machines/pericyte/hardware-configuration.nix index b26ab3a..1ca17dd 100644 --- a/machines/pericyte/hardware-configuration.nix +++ b/machines/pericyte/hardware-configuration.nix @@ -7,8 +7,12 @@ device = "nodev"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/FCE4-1F46"; fsType = "vfat"; }; + fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; }; + swapDevices = [ + { + device = "/swapfile"; + } + ]; boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ]; boot.initrd.kernelModules = [ "nvme" ]; - fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; }; - }