Update to nixos 23.05

This commit is contained in:
2023-06-07 21:10:31 +02:00
parent 477b38b94c
commit 307d40381f
6 changed files with 33 additions and 33 deletions

View File

@@ -33,6 +33,8 @@
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
};
programs.zsh.enable = true;
environment.systemPackages = with pkgs; [
wget
git
@@ -44,9 +46,12 @@
services.openssh = {
enable = true;
permitRootLogin = "no";
passwordAuthentication = false;
kbdInteractiveAuthentication = false;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
extraConfig = ''
AllowTcpForwarding yes
X11Forwarding no