blob: 4c1747927afa4c89200f1ab367578a627e1fb63f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
fileSystems."/" = {
device = "/dev/disk/by-uuid/90ec7fc1-192e-4bb5-9bb5-5e2776435f8d";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/3A26-C3FB";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
fileSystems."/home" = {
device = "/dev/disk/by-uuid/cd7e081e-cd0b-4dc5-b41c-8dda26437a78";
fsType = "ext4";
};
swapDevices = [ ];
}
|