20 lines
274 B
Nix
20 lines
274 B
Nix
{ ... }:
|
|
|
|
{
|
|
users = {
|
|
users = {
|
|
nginx.extraGroups = [ "acme" ];
|
|
};
|
|
groups = {
|
|
hosted = {
|
|
gid = 1005;
|
|
members = [
|
|
"user"
|
|
"minecraft"
|
|
"paperless"
|
|
"vaultwarden"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|