Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 742f0ffa7d50
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 63cdd9bd317e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 28, 2019

  1. NixOS/auto-upgrade: add gzip to service path

    Resolves #28527
    jollheef authored and benley committed Oct 28, 2019
    Copy the full SHA
    b721337 View commit details

Commits on Oct 29, 2019

  1. Merge pull request #72197 from benley/benley/nixos-auto-upgrade-gzip

    NixOS/auto-upgrade: add gzip to service path
    worldofpeace authored Oct 29, 2019
    Copy the full SHA
    63cdd9b View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 nixos/modules/tasks/auto-upgrade.nix
2 changes: 1 addition & 1 deletion nixos/modules/tasks/auto-upgrade.nix
Original file line number Diff line number Diff line change
@@ -88,7 +88,7 @@ let cfg = config.system.autoUpgrade; in
HOME = "/root";
} // config.networking.proxy.envVars;

path = [ pkgs.coreutils pkgs.gnutar pkgs.xz.bin pkgs.gitMinimal config.nix.package.out ];
path = with pkgs; [ coreutils gnutar xz.bin gzip gitMinimal config.nix.package.out ];

script = let
nixos-rebuild = "${config.system.build.nixos-rebuild}/bin/nixos-rebuild";