15 lines
225 B
Nix
15 lines
225 B
Nix
{
|
|
fileSystems = {
|
|
"/" = {
|
|
fsType = "ext4";
|
|
label = "main";
|
|
options = ["noatime"];
|
|
};
|
|
"/srv/backup" = {
|
|
label = "backup";
|
|
fsType = "ext4";
|
|
options = ["noatime"];
|
|
};
|
|
};
|
|
}
|