From 026e83a4a8facf66f98715227537544c685dd40c Mon Sep 17 00:00:00 2001 From: John Soo Date: Tue, 13 Sep 2022 16:43:00 -0700 Subject: [PATCH] nixos/self-deploy: add gzip to path The service fails without it. --- nixos/modules/services/system/self-deploy.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/system/self-deploy.nix b/nixos/modules/services/system/self-deploy.nix index db7b24f0829..9b1ebfd3752 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 ];