diff options
Diffstat (limited to 'ops/modules')
-rw-r--r-- | ops/modules/auto-deploy.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ops/modules/auto-deploy.nix b/ops/modules/auto-deploy.nix index 8ffc0afbc695..a90300d42c68 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" ]; |