about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ops/modules/auto-deploy.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/ops/modules/auto-deploy.nix b/ops/modules/auto-deploy.nix
index 8ffc0afbc6..a90300d42c 100644
--- a/ops/modules/auto-deploy.nix
+++ b/ops/modules/auto-deploy.nix
@@ -62,9 +62,11 @@ in {
     systemd.services.auto-deploy = {
       inherit description;
       script = "${deployScript}";
-      path = [
-        pkgs.bash
-        pkgs.git
+      path = with pkgs; [
+        bash
+        git
+        gnutar
+        gzip
       ];
       after = [ "network-online.target" ];
       wants = [ "network-online.target" ];