1
0
Fork 0
puter/hosts/vessel/filesystems.nix
2025-05-11 22:49:04 +02:00

24 lines
434 B
Nix

{
fileSystems = {
"/" = {
label = "white";
fsType = "ext4";
options = [ "noatime" ];
};
"/srv/vault" = {
label = "black";
fsType = "ext4";
options = [ "noatime" ];
};
"/srv/void" = {
label = "green";
fsType = "ext4";
options = [ "noatime" ];
};
"/srv/sync" = {
label = "red";
fsType = "ext4";
options = [ "noatime" ];
};
};
}