15 lines
375 B
Nix
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"
|
||
|
];
|
||
|
};
|
||
|
}
|