pvv-nixos-config/users/felixalb.nix

12 lines
321 B
Nix
Raw Normal View History

2022-09-08 17:44:20 +02:00
{ pkgs, ... }:
{
users.users.felixalb = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.zsh;
2022-12-17 22:56:12 +01:00
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDKzPICGew7uN0cmvRmbwkwTCodTBUgEhkoftQnZuO4Q felixalbrigtsen@gmail.com"
];
2022-09-08 17:44:20 +02:00
};
}