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
wip/yesman
Markus Kowalewski 5 years ago committed by Markus Kowalewski
parent 5c6892e1a2
commit d788874bdb
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB
  1. 2
      nixos/modules/tasks/auto-upgrade.nix

@ -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}

Loading…
Cancel
Save