pvv-nixos-config/users/felixalb.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
492 B
Nix
Raw Normal View History

2024-02-18 22:13:32 +01:00
{ pkgs, lib, config, ... }:
2022-09-08 17:44:20 +02:00
{
users.users.felixalb = {
isNormalUser = true;
2024-02-18 22:13:32 +01:00
extraGroups = [
"wheel"
] ++ lib.optionals ( config.users.groups ? "libvirtd" ) [
"libvirtd"
];
2022-09-08 17:44:20 +02:00
shell = pkgs.zsh;
2022-12-17 22:56:12 +01:00
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDKzPICGew7uN0cmvRmbwkwTCodTBUgEhkoftQnZuO4Q felixalbrigtsen@gmail.com"
2023-08-17 22:07:00 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTXSL0w7OUcz1LzEt1T3I3K5RgyNV+MYz0x/1RbpDHQ felixalb@worf"
2022-12-17 22:56:12 +01:00
];
2022-09-08 17:44:20 +02:00
};
}