From e16f1db3d91508c380550c7fe9f0523022830f7f Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sun, 16 Feb 2025 18:32:48 +0100 Subject: [PATCH] Add git user to antares --- hosts/antares/configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/antares/configuration.nix b/hosts/antares/configuration.nix index 8a0dbbb..9550047 100644 --- a/hosts/antares/configuration.nix +++ b/hosts/antares/configuration.nix @@ -56,6 +56,14 @@ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtL2eG098LhkFPR4N5e44XMq60uvCUCOuKMYs5zjg6f" ]; }; + users.users.git = { + isNormalUser = true; + description = "git"; + extraGroups = [ ]; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtL2eG098LhkFPR4N5e44XMq60uvCUCOuKMYs5zjg6f" + ]; + }; system.stateVersion = "24.05"; } -- 2.47.2