1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/users/emily/default.nix
2024-01-09 16:23:24 +01:00

10 lines
278 B
Nix

{ config, pkgs, ... }: {
users.users.emily = {
isNormalUser = true;
shell = pkgs.bash;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA/+iN407+HsfHbbC3tfdA8Yf4TZ08qXQMb4tb/SDAs+ emily@card"
];
};
}