1
0
Fork 0
puter/hosts/insomniac/users.nix

15 lines
270 B
Nix
Raw Normal View History

2025-03-01 22:21:00 +01:00
{
config,
...
2025-05-11 22:49:04 +02:00
}:
{
2025-07-14 21:18:44 +02:00
users.users.helvetica = {
description = "Insomniac";
uid = 1000;
isNormalUser = true;
password = "";
openssh.authorizedKeys.keys = builtins.attrValues config.pubkeys.users;
extraGroups = [ "wheel" ]; # TODO remove
2025-03-01 22:21:00 +01:00
};
}