Guanran Wang
89f91afa4e
- 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)
17 lines
No EOL
266 B
Nix
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 = [ ];
|
|
} |