Files

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

12 lines
344 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }:
2024-11-23 22:39:53 +01:00
{
users.users.frero = {
isNormalUser = true;
extraGroups = [ "wheel" "drift" "nix-builder-users" ];
shell = if config.programs.zsh.enable then pkgs.zsh else pkgs.bash;
2024-11-23 22:39:53 +01:00
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII09JbtSUMurvmHpJ7TmUQctXpNVhjFYhoJ3+1ZITmMx"
];
};
}