Lots of user changes and also Spacebar
This commit is contained in:
parent
b5ec4cbf68
commit
36c3f778c8
19 changed files with 69 additions and 43 deletions
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
imports = [
|
||||
./rtmp
|
||||
./user
|
||||
./virtualhosts
|
||||
];
|
||||
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
users = lib.mkIf config.services.nginx.enable {
|
||||
users.nginx = {
|
||||
group = "nginx";
|
||||
extraGroups = [
|
||||
"turnserver"
|
||||
"virtualMail"
|
||||
];
|
||||
isSystemUser = true;
|
||||
uid = 60;
|
||||
};
|
||||
groups.nginx = {};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue