From c71a27395bf847505c87e4ce53d2fde97c70da6d Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 1 Mar 2025 09:54:31 +1000 Subject: [PATCH] nixpkgs-update: use nixos-unstable instead of master for updateScript fetcher bisecting failures is easier on a channel --- hosts/build02/packages-with-update-script.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/build02/packages-with-update-script.nix b/hosts/build02/packages-with-update-script.nix index 4cad36b..7622c37 100644 --- a/hosts/build02/packages-with-update-script.nix +++ b/hosts/build02/packages-with-update-script.nix @@ -1,5 +1,5 @@ let - pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/master.tar.gz") { config.allowAliases = false; }; + pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") { config.allowAliases = false; }; in # code in the following let block was copied from nixos/nixpkgs under # the MIT License