diff options
author | lassulus <lassulus@lassul.us> | 2021-12-01 18:31:53 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-12-01 18:31:53 +0100 |
commit | 9f6c37f21c49fb26d214765cbecef0d9e5abca40 (patch) | |
tree | faed0d79b8163d4b672ce68f00849cce132d88b4 /krebs/3modules/github-hosts-sync.nix | |
parent | bb709ce412115424db63b9ec2622989070c93d46 (diff) |
github-host-sync: add group
Diffstat (limited to 'krebs/3modules/github-hosts-sync.nix')
-rw-r--r-- | krebs/3modules/github-hosts-sync.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/krebs/3modules/github-hosts-sync.nix b/krebs/3modules/github-hosts-sync.nix index 9421576df..71eed6c69 100644 --- a/krebs/3modules/github-hosts-sync.nix +++ b/krebs/3modules/github-hosts-sync.nix @@ -66,11 +66,14 @@ let users.users.${user.name} = { inherit (user) uid; + group = user.name; home = cfg.dataDir; isSystemUser = true; }; }; + users.groups.${user.name} = {}; + user = rec { mail = "${name}@${config.krebs.build.host.name}"; name = "github-hosts-sync"; |