flake/machines/nixos/imac-2017/machine-1/partition.nix
Guanran Wang 89f91afa4e
hardware: overhaul hardware configuration
- moved nvidia prime `xxxBusId` to machines specific configuration
- moved hostname config to flake.nix
- added per-machine configuration
  (example usage: multiple machines with same model)
2023-10-07 16:19:15 +08:00

17 lines
No EOL
266 B
Nix

{ ... }:
{
fileSystems = {
"/boot" = {
device = "/dev/disk/by-uuid/67E3-17ED";
fsType = "vfat";
};
"/" = {
device = "/dev/disk/by-uuid/571588f1-dc9c-4804-a89c-995a667e0574";
fsType = "ext4";
};
};
swapDevices = [ ];
}