nix-infra/common/users/julia.nix

17 lines
421 B
Nix
Raw Normal View History

2023-03-26 16:15:14 +00:00
{ config, pkgs, ... }: {
users.users = {
julia = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.fish;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIa/G3M13aVJpOIX8U/5duiGiNNGmM88/0k0+o0EUGRI cardno:20 876 680"
];
};
};
2023-04-11 17:50:02 +00:00
users.users.root.openssh.authorizedKeys.keys =
config.users.users.julia.openssh.authorizedKeys.keys;
2023-03-26 16:15:14 +00:00
}