1
0
Fork 0
puter/hosts/insomniac/users.nix
2025-07-14 21:18:44 +02:00

14 lines
270 B
Nix

{
config,
...
}:
{
users.users.helvetica = {
description = "Insomniac";
uid = 1000;
isNormalUser = true;
password = "";
openssh.authorizedKeys.keys = builtins.attrValues config.pubkeys.users;
extraGroups = [ "wheel" ]; # TODO remove
};
}