1
0
vcp-bula-nixfiles/users/jannik/default.nix
2022-07-12 18:34:46 +02:00

15 lines
375 B
Nix

{ config, pkgs, ... }:
{
users.users.jannik = {
isNormalUser = true;
shell = pkgs.zsh;
packages = with pkgs; [ htop dnsutils nettools tcpdump git jq tree ];
#hashedPassword = "";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJhpSOaM1Wxwr1sApG376p6lDzDdJbQ8lqjrLUlktMas jannik"
];
};
}