mirror of
https://github.com/oqyude/nixos.git
synced 2026-08-10 08:33:12 +03:00
20 lines
298 B
Nix
20 lines
298 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../containers/3x-ui.nix
|
|
./nginx.nix
|
|
./samba.nix
|
|
./systemd.nix
|
|
# ./glances.nix
|
|
# ./netbird.nix
|
|
# ./xray.nix
|
|
];
|
|
systemd.tmpfiles.rules = [
|
|
"d /mnt 0755 root root -"
|
|
"d ${xlib.dirs.services-mnt-folder} 0755 root root -"
|
|
];
|
|
}
|