From: Dominik Kaiser Date: Sun, 16 Feb 2025 17:32:48 +0000 (+0100) Subject: Add git user to antares X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=e16f1db3d91508c380550c7fe9f0523022830f7f;p=config%2Fnixos.git Add git user to antares --- 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"; }