nixos/self-deploy: add tar to path.

Previously it was missing, and the service would fail.
This commit is contained in:
John Soo 2022-09-12 09:07:34 -07:00
parent 5f326e2a40
commit f0f4ad0cb0
No known key found for this signature in database
GPG key ID: D8A148F8CE4DDBC2

View file

@ -139,6 +139,7 @@ in
path = with pkgs; [
git
gnutar
nix
] ++ lib.optionals (cfg.switchCommand == "boot") [ systemd ];