Switched to openssh package with kerberos support

This commit is contained in:
Jan-Bulthuis 2025-06-11 14:21:57 +02:00
parent d8327c3edf
commit ce7c940f65

View File

@ -127,11 +127,14 @@ in
}; };
# Set up SSH # Set up SSH
services.openssh.settings = { services.openssh = {
package = pkgs.opensshWithKerberos;
settings = {
GSSAPIAuthentication = true; GSSAPIAuthentication = true;
GSSAPICleanupCredentials = true; GSSAPICleanupCredentials = true;
GSSAPIStrictAcceptorCheck = true; GSSAPIStrictAcceptorCheck = true;
}; };
};
# Set up home directory # Set up home directory
security.pam.services.login.makeHomeDir = true; security.pam.services.login.makeHomeDir = true;