blob: 3e8329390a42c1a167b50f96456ff74b19217b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
lib,
...
}:
{
fileSystems."/" = {
device = "/dev/disk/by-uuid/d296f7a3-68d2-406f-963d-8ec39ab0ea64";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/B159-723B";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
swapDevices = lib.singleton {
device = "/.swapfile";
};
}
|