diff options
author | lassulus <lassulus@lassul.us> | 2021-06-05 14:45:43 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-06-05 14:45:43 +0200 |
commit | b9d9b711b89a1d5a8eba6e2a68a8bffd454496c7 (patch) | |
tree | a2e47d3d7fd0447f68b34e1220ed1416dde9a045 /krebs | |
parent | dd2513e21cc53ae86286c008a507a229160cd1ec (diff) |
github-hosts-sync: set isSystemUser at correct location
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/3modules/github-hosts-sync.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/3modules/github-hosts-sync.nix b/krebs/3modules/github-hosts-sync.nix index 2aa26fa2b..d385ec355 100644 --- a/krebs/3modules/github-hosts-sync.nix +++ b/krebs/3modules/github-hosts-sync.nix @@ -65,6 +65,7 @@ let users.users.${user.name} = { inherit (user) uid; home = cfg.dataDir; + isSystemUser = true; }; }; @@ -72,7 +73,6 @@ let mail = "${name}@${config.krebs.build.host.name}"; name = "github-hosts-sync"; uid = genid_uint31 name; - isSystemUser = true; }; # TODO move to lib? |