about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCollin J. Doering2024-04-09 14:17:55 -0400
committerCollin J. Doering2024-04-09 14:17:55 -0400
commit7604b00ae36cb50506ab5aaaeb07bcf6d9cc5563 (patch)
treee0323087433f450f296f505a611c0598ea3ecdc8
parent8b0daea1d77ee8b0c81833300ff68d930f508723 (diff)
downloadguix-north-america-7604b00ae36cb50506ab5aaaeb07bcf6d9cc5563.tar.gz
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.
-rw-r--r--.guix/guix-na/config/balg02.scm2
1 files changed, 2 insertions, 0 deletions
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"))