summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking/tinydns.nix
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2019-10-12 22:25:28 +0200
committerJanne Heß <janne@hess.ooo>2019-10-12 22:25:28 +0200
commitd6c08776ba620b7822bd0f0b8614a329ce8157e2 (patch)
treebb2a64407ed5aa062f68239dfd7bfbb2bede6a4d /nixos/modules/services/networking/tinydns.nix
parentd4f085036b34cba3c60cc8c9ee7d9db965404b1f (diff)
treewide: Switch to system users
Diffstat (limited to 'nixos/modules/services/networking/tinydns.nix')
-rw-r--r--nixos/modules/services/networking/tinydns.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/tinydns.nix b/nixos/modules/services/networking/tinydns.nix
index 7d5db71601ef..7b2c464ab46b 100644
--- a/nixos/modules/services/networking/tinydns.nix
+++ b/nixos/modules/services/networking/tinydns.nix
@@ -32,7 +32,7 @@ with lib;
config = mkIf config.services.tinydns.enable {
environment.systemPackages = [ pkgs.djbdns ];
- users.users.tinydns = {};
+ users.users.tinydns.isSystemUser = true;
systemd.services.tinydns = {
description = "djbdns tinydns server";