1
0

Add user jannik

This commit is contained in:
clerie 2022-07-12 18:34:46 +02:00
parent 517ac86a3c
commit 6d7594314e

14
users/jannik/default.nix Normal file
View File

@ -0,0 +1,14 @@
{ 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"
];
};
}