tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/tinc: users are system users
William A. Kennington III
10 years ago
31a273cb
4f943ef2
+1
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
tinc.nix
+1
nixos/modules/services/networking/tinc.nix
···
154
users.extraUsers = flip mapAttrs' cfg.networks (network: _:
155
nameValuePair ("tinc.${network}") ({
156
description = "Tinc daemon user for ${network}";
0
157
})
158
);
159
···
154
users.extraUsers = flip mapAttrs' cfg.networks (network: _:
155
nameValuePair ("tinc.${network}") ({
156
description = "Tinc daemon user for ${network}";
157
+
isSystemUser = true;
158
})
159
);
160