15 lines
No EOL
311 B
Nix
15 lines
No EOL
311 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
cfg,
|
|
...
|
|
}: {
|
|
users.users.ellie = {
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel"];
|
|
packages = with pkgs; [
|
|
];
|
|
};
|
|
users.users.ellie.openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKA4+3PkFptATzrWncxdj63SqZ747cDb8TqmdQFugvW7 ellie@card"];
|
|
} |