flake/modules/users/ellie/default.nix

15 lines
311 B
Nix
Raw Normal View History

2024-11-09 20:58:41 +01:00
{
lib,
pkgs,
config,
cfg,
...
}: {
users.users.ellie = {
isNormalUser = true;
extraGroups = ["wheel"];
packages = with pkgs; [
];
};
2024-11-09 21:02:02 +01:00
users.users.ellie.openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKA4+3PkFptATzrWncxdj63SqZ747cDb8TqmdQFugvW7 ellie@card"];
2024-11-09 20:58:41 +01:00
}