19 lines
339 B
Nix
19 lines
339 B
Nix
_: {
|
|
|
|
fileSystems = {
|
|
"/boot" = {
|
|
device = "/dev/disk/by-uuid/1C5C-8FF4";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/26389642-cf51-4c58-98e9-1fe491a11bb9";
|
|
fsType = "ext4";
|
|
};
|
|
};
|
|
|
|
swapDevices = [
|
|
{ device = "/dev/disk/by-uuid/a732641d-1233-45a7-8614-53caed60f11b"; }
|
|
];
|
|
|
|
}
|