blob: cf86dda480a4a4f5971d1832d4a264fc9e0b0463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
fileSystems."/" = {
device = "/dev/disk/by-uuid/e336b96d-b3b4-4098-a0ca-9001fd381f88";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/F804-40A9";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
swapDevices = [ ];
}
|