updated to 23.05

This commit is contained in:
specCon18 2023-07-31 19:25:14 -04:00
parent 86427492ea
commit 5bae6c9d0e
9 changed files with 45 additions and 60 deletions

View file

@ -1,6 +1,6 @@
{
programs.eww = {
enable=true;
enable=false;
configDir=../../dotfiles/eww;
};
}

View file

@ -4,11 +4,13 @@
services.openssh = lib.mkDefault {
enable = true;
openFirewall = true;
passwordAuthentication = false;
permitRootLogin = "no";
kbdInteractiveAuthentication = false;
startWhenNeeded = true;
kexAlgorithms = [ "curve25519-sha256@libssh.org" ];
settings = {
KexAlgorithms = [ "curve25519-sha256@libssh.org" ];
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
security.pam = lib.mkDefault {
enableSSHAgentAuth = true;