about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJohn Soo <john.soo@arista.com>2022-09-13 16:43:00 -0700
committerJohn Soo <john.soo@arista.com>2022-09-13 16:43:00 -0700
commit026e83a4a8facf66f98715227537544c685dd40c (patch)
tree885b4d48238904589f08588b5c88697e5ec0b188 /nixos
parent78bce1608960b994405f3696ba086ba1d63654e9 (diff)
downloadnixlib-026e83a4a8facf66f98715227537544c685dd40c.tar
nixlib-026e83a4a8facf66f98715227537544c685dd40c.tar.gz
nixlib-026e83a4a8facf66f98715227537544c685dd40c.tar.bz2
nixlib-026e83a4a8facf66f98715227537544c685dd40c.tar.lz
nixlib-026e83a4a8facf66f98715227537544c685dd40c.tar.xz
nixlib-026e83a4a8facf66f98715227537544c685dd40c.tar.zst
nixlib-026e83a4a8facf66f98715227537544c685dd40c.zip
nixos/self-deploy: add gzip to path
The service fails without it.
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 db7b24f0829e..9b1ebfd37522 100644
--- a/nixos/modules/services/system/self-deploy.nix
+++ b/nixos/modules/services/system/self-deploy.nix
@@ -140,6 +140,7 @@ in
       path = with pkgs; [
         git
         gnutar
+        gzip
         nix
       ] ++ lib.optionals (cfg.switchCommand == "boot") [ systemd ];