summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/collectd.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2019-11-01 13:26:43 +0100
committerGitHub <noreply@github.com>2019-11-01 13:26:43 +0100
commitdd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6 (patch)
treecc6d45380510bc73529360b46cac70fa4b3afa6e /nixos/modules/services/monitoring/collectd.nix
parenteb2284508d7a1362e434f042aa0df5bdcb7285dc (diff)
parentd6c08776ba620b7822bd0f0b8614a329ce8157e2 (diff)
downloadnixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.tar
nixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.tar.gz
nixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.tar.bz2
nixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.tar.lz
nixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.tar.xz
nixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.tar.zst
nixpkgs-dd0a47e7ae2f6f33298c61f75aff2652e0a2f6d6.zip
treewide: Switch to system users (#71055)
treewide: Switch to system users
Diffstat (limited to 'nixos/modules/services/monitoring/collectd.nix')
-rw-r--r--nixos/modules/services/monitoring/collectd.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/monitoring/collectd.nix b/nixos/modules/services/monitoring/collectd.nix
index b2e44a1e366..731ac743b7c 100644
--- a/nixos/modules/services/monitoring/collectd.nix
+++ b/nixos/modules/services/monitoring/collectd.nix
@@ -131,6 +131,7 @@ in {
 
     users.users = optional (cfg.user == "collectd") {
       name = "collectd";
+      isSystemUser = true;
     };
   };
 }