diff options
author | Collin J. Doering | 2024-05-27 07:47:02 -0400 |
---|---|---|
committer | Collin J. Doering | 2024-05-27 07:47:02 -0400 |
commit | 56e35c36520946a8e78a84f5e503f1fc2d5eae94 (patch) | |
tree | 87af5456d2944fe3c37882cef3f5e53b19267745 /.guix/guix-na/config | |
parent | acc0aed1a6f59781dc27f79056ff14d85b72749f (diff) | |
download | guix-north-america-56e35c36520946a8e78a84f5e503f1fc2d5eae94.tar.gz |
balg02: Add new users, and ssh keys for Arun and Pjotr
Diffstat (limited to '.guix/guix-na/config')
-rw-r--r-- | .guix/guix-na/config/balg02.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.guix/guix-na/config/balg02.scm b/.guix/guix-na/config/balg02.scm index 55a9521..24e956f 100644 --- a/.guix/guix-na/config/balg02.scm +++ b/.guix/guix-na/config/balg02.scm @@ -84,6 +84,14 @@ '("wheel")) (home-directory "/home/auto")) (user-account + (name "arun") + (comment "Admin user") + (group "users") + (shell #~(string-append #$zsh "/bin/zsh")) + (supplementary-groups + '("wheel")) + (home-directory "/home/arun")) + (user-account (name "collin") (comment "Admin user") (group "users") @@ -91,6 +99,14 @@ (supplementary-groups '("wheel")) (home-directory "/home/collin")) + (user-account + (name "pjotr") + (comment "Admin user") + (group "users") + (shell #~(string-append #$zsh "/bin/zsh")) + (supplementary-groups + '("wheel")) + (home-directory "/home/pjotr")) %base-user-accounts)) (packages @@ -113,7 +129,13 @@ (allow-agent-forwarding? #t) (authorized-keys `(("auto" ,(local-file "../../../.pubkeys/deploy-key.pub")) + ("arun" ,(local-file "../../../.pubkeys/arun.pub")) ("collin" ,(local-file "../../../.pubkeys/collin.pub")) + ("pjotr" + ,(local-file "../../../.pubkeys/pjotr-gaeta.pub") + ,(local-file "../../../.pubkeys/pjotr-napoli.pub") + ,(local-file "../../../.pubkeys/pjotr-stromboli.pub") + ,(local-file "../../../.pubkeys/pjotr-tb-arm-01.pub")) ("root" ,(local-file "../../../.pubkeys/collin.pub")))))) (service static-networking-service-type (list (static-networking |