1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/users/emily/default.nix

11 lines
278 B
Nix
Raw Normal View History

2024-01-09 15:55:29 +01:00
{ config, pkgs, ... }: {
2024-01-09 15:46:18 +01:00
users.users.emily = {
isNormalUser = true;
2024-01-09 16:23:24 +01:00
shell = pkgs.bash;
2024-01-09 15:46:18 +01:00
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA/+iN407+HsfHbbC3tfdA8Yf4TZ08qXQMb4tb/SDAs+ emily@card"
];
};
}