diff --git a/hosts/Infini-SWIFT/hardware-configuration.nix b/hosts/Infini-SWIFT/hardware-configuration.nix index 0b4796c..d61c3af 100644 --- a/hosts/Infini-SWIFT/hardware-configuration.nix +++ b/hosts/Infini-SWIFT/hardware-configuration.nix @@ -15,4 +15,17 @@ boot.extraModulePackages = [ ]; powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; + + fileSystems."/" = { device = "/dev/disk/by-label/4a964f22-e270-42df-ae54-00f91d89edd9"; + fsType = "ext4"; + }; + fileSystems."/boot" = { device = "/dev/disk/by-uuid/6836-6848"; + fsType = "vfat"; + }; + + swapDevices = [ + { + device = "/dev/disk/by-uuid/8d0f13e7-135e-4dfd-9090-fabf1fc406c2"; + } + ]; }