summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/consul.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/networking/consul.nix')
-rw-r--r--nixos/modules/services/networking/consul.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/consul.nix b/nixos/modules/services/networking/consul.nix
index ae7998913ee0..476ca738dd1b 100644
--- a/nixos/modules/services/networking/consul.nix
+++ b/nixos/modules/services/networking/consul.nix
@@ -159,10 +159,12 @@ in
users.users.consul = {
description = "Consul agent daemon user";
- uid = config.ids.uids.consul;
+ isSystemUser = true;
+ group = "consul";
# The shell is needed for health checks
shell = "/run/current-system/sw/bin/bash";
};
+ users.groups.consul = {};
environment = {
etc."consul.json".text = builtins.toJSON configOptions;