[NixOS] Move nginx mods to biskcomp

This commit is contained in:
Ivan Malison 2023-12-13 11:41:50 -07:00
parent 4a7edcda75
commit b102fd2b85
2 changed files with 6 additions and 5 deletions

View File

@ -7,6 +7,12 @@ in
../raspberry-pi.nix
];
users.users.nginx = {
group = "nginx";
isSystemUser = true;
extraGroups = ["syncthing"];
};
modules.raspberry-pi.enable = true;
modules.base.enable = true;

View File

@ -28,11 +28,6 @@ in
home = "/var/lib/syncthing";
createHome = true;
};
nginx = {
group = "nginx";
isSystemUser = true;
extraGroups = ["syncthing"];
};
imalison = userDefaults // {
extraGroups = extraGroupsWithWheel;
name = "imalison";