mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
16 lines
298 B
Nix
16 lines
298 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
systemd.tmpfiles.rules = [
|
|
"d ${xlib.dirs.services-mnt-folder} 0755 root root -"
|
|
"d ${xlib.dirs.services-mnt-folder}/containers 0755 root root -"
|
|
"d ${xlib.dirs.services-mnt-folder}/containers/remnanode 0755 root root -"
|
|
];
|
|
}
|