about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJohn Soo <john.soo@arista.com>2022-09-12 09:07:34 -0700
committerJohn Soo <john.soo@arista.com>2022-09-12 09:08:43 -0700
commitf0f4ad0cb0723e8962e18d1fa805df6a80029483 (patch)
tree18709b051c061df2b7ee4a063016dc14e08f5cc1 /nixos
parent5f326e2a403e1cebaec378e72ceaf5725983376d (diff)
nixos/self-deploy: add tar to path.
Previously it was missing, and the service would fail.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/system/self-deploy.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/system/self-deploy.nix b/nixos/modules/services/system/self-deploy.nix
index a508cecef26c7..db7b24f0829e0 100644
--- a/nixos/modules/services/system/self-deploy.nix
+++ b/nixos/modules/services/system/self-deploy.nix
@@ -139,6 +139,7 @@ in
 
       path = with pkgs; [
         git
+        gnutar
         nix
       ] ++ lib.optionals (cfg.switchCommand == "boot") [ systemd ];