15 lines
218 B
Nix
15 lines
218 B
Nix
{
|
|
boot.tmp.cleanOnBoot = true;
|
|
|
|
fileSystems = {
|
|
"/" = {
|
|
fsType = "ext4";
|
|
options = ["noatime"];
|
|
};
|
|
"/boot" = {
|
|
device = "/dev/disk/by-label/BOOT";
|
|
fsType = "vfat";
|
|
};
|
|
};
|
|
}
|