From f0f4ad0cb0723e8962e18d1fa805df6a80029483 Mon Sep 17 00:00:00 2001 From: John Soo Date: Mon, 12 Sep 2022 09:07:34 -0700 Subject: [PATCH] nixos/self-deploy: add tar to path. Previously it was missing, and the service would fail. --- 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 a508cecef26c..db7b24f0829e 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 ];