From 5dc6165c2ed0870456b4b97058378d045a2c5075 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 23 Aug 2024 20:19:26 +0200 Subject: [PATCH] feat(gerrit): add git in the environment to perform git-native clones Signed-off-by: Raito Bezarius --- services/gerrit/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/gerrit/default.nix b/services/gerrit/default.nix index e079818..bcc6478 100644 --- a/services/gerrit/default.nix +++ b/services/gerrit/default.nix @@ -42,7 +42,7 @@ in config = mkIf cfg.enable { networking.firewall.allowedTCPPorts = [ cfg.port ]; - environment.systemPackages = [ jdk ]; + environment.systemPackages = [ jdk pkgs.git ]; fileSystems."/var/lib/gerrit" = mkIf (cfg.data != "/var/lib/gerrit") { device = cfg.data;