From 7604b00ae36cb50506ab5aaaeb07bcf6d9cc5563 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Tue, 9 Apr 2024 14:17:55 -0400 Subject: [PATCH] balg02: openssh: permit root login with key; enable agent-forwarding * .guix/guix-na/config/balg02.scm: This is in response to feedback provided by Pjotr and Arun. --- .guix/guix-na/config/balg02.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.guix/guix-na/config/balg02.scm b/.guix/guix-na/config/balg02.scm index e7a1522..8b50164 100644 --- a/.guix/guix-na/config/balg02.scm +++ b/.guix/guix-na/config/balg02.scm @@ -108,6 +108,8 @@ (service openssh-service-type (openssh-configuration (password-authentication? #f) + (permit-root-login 'prohibit-password) + (allow-agent-forwarding? #t) (authorized-keys `(("auto" ,(local-file "../../../.pubkeys/deploy-key.pub")) ("collin" ,(local-file "../../../.pubkeys/collin.pub"))