diff --git a/instances/sif/hardware-configuration.nix b/instances/sif/hardware-configuration.nix index 5d81ecf..6bad970 100644 --- a/instances/sif/hardware-configuration.nix +++ b/instances/sif/hardware-configuration.nix @@ -25,33 +25,36 @@ kernelModules = [ "kvm-intel" ]; extraModulePackages = [ ]; }; + fileSystems = { - "/" = + "/" = { device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539"; fsType = "btrfs"; options = [ "subvol=@root" ]; }; - "/home" = - { device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539"; - fsType = "btrfs"; - options = [ "subvol=@home" ]; - }; - "/nix" = { device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539"; fsType = "btrfs"; options = [ "subvol=@nix" ]; }; + "/home" = + { device = "/dev/disk/by-uuid/c3e09b0e-d2bc-4e28-a96e-5de7f4c10539"; + fsType = "btrfs"; + options = [ "subvol=@home" ]; + }; + "/boot" = { device = "/dev/disk/by-uuid/2E59-DAA6"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; + }; - swapDevices = [{ device = "/dev/disk/by-uuid/87eb2eb4-8596-43c2-bdbe-e0c87ee45710"; }]; + + swapDevices = [ { device = "/dev/disk/by-uuid/166f3bcd-7312-4864-9d2f-849da0a8fa79"; } ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's