From 50ff67a9bd89eed6371b3905e464c3c4ed399cc5 Mon Sep 17 00:00:00 2001
From: Kiara Grouwstra <kiara@procolix.eu>
Date: Thu, 20 Mar 2025 15:37:40 +0100
Subject: [PATCH] add pkgs.git, helps suppress warning on missing git when
 pressing deploy button

---
 panel/nix/configuration.nix | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/panel/nix/configuration.nix b/panel/nix/configuration.nix
index 5faf0daf..db80b59d 100644
--- a/panel/nix/configuration.nix
+++ b/panel/nix/configuration.nix
@@ -142,7 +142,11 @@ in
   config = mkIf cfg.enable {
     nixpkgs.overlays = [ (import ./overlay.nix) ];
 
-    environment.systemPackages = [ manage-admin ];
+    environment.systemPackages = [
+      manage-admin
+      # helps suppress warning on missing git when pressing deploy button
+      pkgs.git
+    ];
 
     services = {
       nginx.enable = true;