flake/modules/users/ellie/default.nix
2024-11-09 21:02:02 +01:00

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"];
}