diff --git a/hosts/affogato/hardware-configuration.nix b/hosts/affogato/hardware-configuration.nix index acdeb10..f449535 100644 --- a/hosts/affogato/hardware-configuration.nix +++ b/hosts/affogato/hardware-configuration.nix @@ -13,19 +13,30 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/34d0b26e-8d69-4388-bf94-67e44669cdd8"; + fileSystems = { + "/" = { + device = "/dev/disk/by-uuid/34d0b26e-8d69-4388-bf94-67e44669cdd8"; fsType = "ext4"; }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/3B4B-0489"; + "/boot" = { + device = "/dev/disk/by-uuid/3B4B-0489"; fsType = "vfat"; }; + "/home" = { + device = "/dev/disk/by-uuid/a836d70d-ee4d-4973-b3c0-2888d0a60095"; + fsType = "btrfs"; + }; + "/nix/store" = { + device = "/dev/disk/by-uuid/720dd78e-7070-4d5f-a550-cd03bdde93bd"; + fsType = "xfs"; + }; + }; - swapDevices = - [ { device = "/dev/disk/by-uuid/22e2d822-7f26-4246-a28e-b10a116f2818"; } - ]; + swapDevices = [ + { + device = "/dev/disk/by-uuid/22e2d822-7f26-4246-a28e-b10a116f2818"; + } + ]; boot.initrd.luks.devices."coffee".device = "/dev/disk/by-uuid/e24d653d-df2d-472b-97c3-653ee3169b1c";