Merge remote-tracking branch 'leon/master'

This commit is contained in:
Astro 2022-08-20 17:24:25 +02:00
commit f0907545d4
1 changed files with 10 additions and 3 deletions

View File

@ -24,10 +24,11 @@ in
wheelNeedsPassword = false;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
wget vim python3Full nmap htop
wget vim python3Full nmap htop wireguard-tools
];
@ -36,9 +37,15 @@ in
extraGroups = [ "wheel" ];
createHome = true;
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDJf/SwJwNs+BBKC2DhlMajlbJ95oB5GkPbnzc3CARBeX9jn9DRk9yLRcKdNtLaxwuFctelRDlCHRpsjKqv78rEsUbs3ZID2I29lW0nozUcMcNHy4OX9eep8D6UjZibGKnm3G1X7bkUjukCFbBlQp97CnqUH06DCGMMubQJ4gOpJ08G5jFEDdZQmaW2ZHSpOK58ilxClkYxR/Gqr3ILU3OS91auzTcplKvg96Pd3k0BJRZR02zkPW/hx1oVLMCckTmi53DrJ9gyRSkO9IGR5Nhit5rrgSGD/G3IQGYYnU8puLoU7b4aqjlUhM0kO+csXowgoTc+i/k1gIIHdwd/tppu2KhTuD5FcSfGTciTX5Aw0swIOHs7e5yMlCNu3tPgxpOSYIuyuormnYHCXfEhsPbAhdCqZqZwenyt4T2pVyVB/RI0x+UcngH5NqGTb8NlvmEL9Ymxo8irUpB4f1t4WPob2man1J3pLiLd14JjDwpuoIuC4ZSAXPlwPqcWaUT2hG8= leon@¯\_()_/¯"
];
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM2zpmWA3Z9zshWaU8k1SWyJnbAyasOu9pV+9BvTY0XE leon@¯\_()_/¯"
];
};
networking.firewall = {
allowedTCPPorts = [ 5000 22 53 80 8080 777 ];
allowedUDPPorts = [ 5000 22 53 80 8080 777 ];
};
system.stateVersion = "22.05";
}