13 lines
243 B
Nix
13 lines
243 B
Nix
{ inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
users = {
|
|
users = { nginx.extraGroups = [ "acme" ]; };
|
|
groups = {
|
|
hosted = {
|
|
gid = 1005;
|
|
members = [ "user" "minecraft" "paperless" "vaultwarden" ];
|
|
};
|
|
};
|
|
};
|
|
}
|