blob: a956d2de7865df4aa9042e08ab19a60f392c8b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
fileSystems."/" = {
device = "/dev/disk/by-uuid/d62103eb-e154-4b71-b813-54ca76815a80";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/5972-1878";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
swapDevices = [ ];
}
|