NixOS/auto-upgrade: add git to service path

Resolves https://github.com/NixOS/nixpkgs/issues/54946
where nixos-rebuild can not find git, when executed
from inside the systemd service
This commit is contained in:
Markus Kowalewski 2019-02-01 14:03:21 +01:00 committed by Markus Kowalewski
parent 5c6892e1a2
commit d788874bdb
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -78,7 +78,7 @@ let cfg = config.system.autoUpgrade; in
HOME = "/root";
} // config.networking.proxy.envVars;
path = [ pkgs.gnutar pkgs.xz.bin config.nix.package.out ];
path = [ pkgs.gnutar pkgs.xz.bin pkgs.gitMinimal config.nix.package.out ];
script = ''
${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags}