nixos/pdns-recursor: declare module user as system user

Changed files
+1 -2
nixos
modules
misc
services
networking
+1 -1
nixos/modules/misc/ids.nix
···
headphones = 266;
couchpotato = 267;
gogs = 268;
-
pdns-recursor = 269;
+
#pdns-recursor = 269; # dynamically allocated as of 2020-20-18
#kresd = 270; # switched to "knot-resolver" with dynamic ID
rpc = 271;
geoip = 272;
-1
nixos/modules/services/networking/pdns-recursor.nix
···
users.users.pdns-recursor = {
isSystemUser = true;
group = "pdns-recursor";
-
uid = config.ids.uids.pdns-recursor;
description = "PowerDNS Recursor daemon user";
};