Files
pvv-nixos-config/users/albertba.nix
Vegard Bieker Matthey 54a6b687dd nixfmt
2026-02-20 18:12:39 +01:00

23 lines
429 B
Nix

{ config, pkgs, ... }:
{
users.users.albertba = {
isNormalUser = true;
extraGroups = [
"wheel"
"drift"
"nix-builder-users"
];
packages = with pkgs; [
fd
];
shell = if config.programs.zsh.enable then pkgs.zsh else pkgs.bash;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICheSCAxsYc/6g8hq2lXXHoUWPjWvntzzTA7OhG8waMN albert@Arch"
];
};
}