add /boot
This commit is contained in:
parent
1ae8bcb293
commit
77fd1e8d2c
@ -18,9 +18,23 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems = {
|
||||||
|
"/boot" = {
|
||||||
device = "${disk}-part1";
|
device = "${disk}-part1";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [
|
||||||
|
"fmask=0022"
|
||||||
|
"dmask=0022"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"/" = {
|
||||||
|
device = "${disk}-part3";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
|
options = [
|
||||||
|
"compress=zstd"
|
||||||
|
"noatime"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ { device = "${disk}-part2"; } ];
|
swapDevices = [ { device = "${disk}-part2"; } ];
|
||||||
|
Loading…
Reference in New Issue
Block a user