diff --git a/hosts/Heracles/hardware-configuration.nix b/hosts/Heracles/hardware-configuration.nix index 475b508..9403859 100644 --- a/hosts/Heracles/hardware-configuration.nix +++ b/hosts/Heracles/hardware-configuration.nix @@ -14,21 +14,21 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/59a97eab-9251-485c-a297-541618197680"; + { device = "/dev/disk/by-uuid/633703b9-81c0-4d2b-9829-e5e92b2778be"; fsType = "ext4"; }; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/91F8-889D"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + fileSystems."/home" = { device = "/dev/disk/by-uuid/dffd60ce-8d81-495e-8e60-9b985d39f15e"; fsType = "ext4"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/C1A0-08A8"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; - swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";