nixos/tinc: users are system users

+1
+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}"; 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