Commit e97a209446db

Vincent Demeester <vincent@sbr.pm>
2020-01-08 16:48:08
ssh.nix: allow GSSAPI* auth mechansim
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent bf869b9
Changed files (1)
modules
profiles
modules/profiles/ssh.nix
@@ -52,6 +52,11 @@ in
           forwardAgent = true;
         };
       } // cfg.machines;
+      extraConfig = ''
+PreferredAuthentications gssapi-with-mic,publickey,password
+GSSAPIAuthentication yes
+GSSAPIDelegateCredentials yes
+'';
     };
   };
 }