14 lines
270 B
Nix
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
|
|
};
|
|
}
|