diff options
| author | Dominik Kaiser | 2025-02-16 18:32:48 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-16 18:32:48 +0100 |
| commit | e16f1db3d91508c380550c7fe9f0523022830f7f (patch) | |
| tree | 1186c292c07568600287cea2232306102e064ff3 /hosts/antares/configuration.nix | |
| parent | 51f755c57e828b403059e79551ef3552bd8b2108 (diff) | |
| download | nixos-e16f1db3d91508c380550c7fe9f0523022830f7f.tar.gz nixos-e16f1db3d91508c380550c7fe9f0523022830f7f.zip | |
Add git user to antares
Diffstat (limited to 'hosts/antares/configuration.nix')
| -rw-r--r-- | hosts/antares/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
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"; } |
