puter/hosts/headless/vessel/filesystems.nix

15 lines
225 B
Nix
Raw Normal View History

2024-02-04 20:51:11 +00:00
{
fileSystems = {
"/" = {
2024-07-01 22:06:05 +00:00
fsType = "ext4";
2024-08-18 12:54:44 +00:00
label = "main";
2024-07-01 22:06:05 +00:00
options = ["noatime"];
2024-02-04 20:51:11 +00:00
};
2025-03-01 21:21:00 +00:00
"/srv/backup" = {
label = "backup";
fsType = "ext4";
options = ["noatime"];
2024-02-04 20:51:11 +00:00
};
};
}