From ce7c940f653f36e0901b42b451476111725e8450 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Wed, 11 Jun 2025 14:21:57 +0200 Subject: [PATCH] Switched to openssh package with kerberos support --- modules/nixos/domain.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/modules/nixos/domain.nix b/modules/nixos/domain.nix index 7800fdd..e6b083e 100644 --- a/modules/nixos/domain.nix +++ b/modules/nixos/domain.nix @@ -127,10 +127,13 @@ in }; # Set up SSH - services.openssh.settings = { - GSSAPIAuthentication = true; - GSSAPICleanupCredentials = true; - GSSAPIStrictAcceptorCheck = true; + services.openssh = { + package = pkgs.opensshWithKerberos; + settings = { + GSSAPIAuthentication = true; + GSSAPICleanupCredentials = true; + GSSAPIStrictAcceptorCheck = true; + }; }; # Set up home directory