15 lines
480 B
Nix
15 lines
480 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.jannik = {
|
|
isNormalUser = true;
|
|
shell = pkgs.zsh;
|
|
packages = with pkgs; [ htop dnsutils nettools tcpdump git jq tree ];
|
|
hashedPassword = "$6$1NuGXevYFDLK79Rj$Rml.WxRwknSh47ibpOZu2HiLjB5tVz24AujUlj16jKkizN4Et9CbUhs9GRqF8fDmco1UD.BmOO7H3.SBs3rRL.";
|
|
extraGroups = [ "wheel" ];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJhpSOaM1Wxwr1sApG376p6lDzDdJbQ8lqjrLUlktMas jannik"
|
|
];
|
|
};
|
|
}
|