16 lines
254 B
Nix
16 lines
254 B
Nix
{
|
|
systemd.tmpfiles.settings = {
|
|
"10-safe"."/srv/safe".d = {
|
|
user = "root";
|
|
group = "root";
|
|
mode = "0755";
|
|
};
|
|
|
|
"10-storage"."/srv/storage".d = {
|
|
user = "root";
|
|
group = "root";
|
|
mode = "0755";
|
|
};
|
|
};
|
|
}
|