nixos/tinc: users are system users

This commit is contained in:
William A. Kennington III 2015-05-21 20:11:13 -07:00
parent 4f943ef237
commit 31a273cb14

View file

@ -154,6 +154,7 @@ in
users.extraUsers = flip mapAttrs' cfg.networks (network: _:
nameValuePair ("tinc.${network}") ({
description = "Tinc daemon user for ${network}";
isSystemUser = true;
})
);