puter/hosts/headless/vessel/filesystems.nix
2025-03-01 22:21:00 +01:00

15 lines
225 B
Nix

{
fileSystems = {
"/" = {
fsType = "ext4";
label = "main";
options = ["noatime"];
};
"/srv/backup" = {
label = "backup";
fsType = "ext4";
options = ["noatime"];
};
};
}