summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2025-04-24 14:19:47 +0200
committerstuebinm2025-04-24 14:19:47 +0200
commit1a864f119d2a25ee1b8429ae79991bdc123e1035 (patch)
treea834be948fa445e4cd854ff3dbc75250f44fa8f0
parentce8aaf0ed212555a33c1a77db83047455b781544 (diff)
flora/cgit: add work laptop to authorised users
-rw-r--r--flora/services/cgit.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flora/services/cgit.nix b/flora/services/cgit.nix
index 1dae737..b846ad4 100644
--- a/flora/services/cgit.nix
+++ b/flora/services/cgit.nix
@@ -105,7 +105,8 @@ in
# user for git repo administration
users.users.git = {
- openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
+ openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys
+ ++ [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIbHG2wmMiUyvqb9oUa2KunEgv4Iab3FGCER/i2f2gKL terru@work" ];
home = "/var/git";
isNormalUser = true;
packages = [ pkgs.gitMinimal ];