nix/system/Filesystem.nix

18 lines
347 B
Nix
Raw Normal View History

# I use the same layout on all hosts with GPT labels.
# This way I can configure system's FS in one place here.
2024-11-04 04:37:29 +03:00
{ ... }: {
fileSystems = {
"/" = {
device = "/dev/disk/by-partlabel/NIXROOT";
fsType = "ext4";
options = [
"noatime"
];
};
"/boot" = {
device = "/dev/disk/by-partlabel/NIXBOOT";
fsType = "vfat";
};
};
}