mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-04 17:20:02 +01:00
12 lines
344 B
Nix
12 lines
344 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
users.users.frero = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "drift" "nix-builder-users" ];
|
|
shell = if config.programs.zsh.enable then pkgs.zsh else pkgs.bash;
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII09JbtSUMurvmHpJ7TmUQctXpNVhjFYhoJ3+1ZITmMx"
|
|
];
|
|
};
|
|
}
|