1
0
Fork 0
puter/hosts/vessel/filesystems.nix

25 lines
434 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{
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" ];
};
};
}