home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit e97a209446dbe903cf741e8832d0b7d5f3a2a360
parent bf869b97b423a0e96d97418f59546500503a165c
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed,  8 Jan 2020 16:48:08 +0100

ssh.nix: allow GSSAPI* auth mechansim

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/ssh.nix | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/modules/profiles/ssh.nix b/modules/profiles/ssh.nix @@ -52,6 +52,11 @@ in forwardAgent = true; }; } // cfg.machines; + extraConfig = '' +PreferredAuthentications gssapi-with-mic,publickey,password +GSSAPIAuthentication yes +GSSAPIDelegateCredentials yes +''; }; }; }