nixpkgs-update: use nixos-unstable instead of master for updateScript fetcher

bisecting failures is easier on a channel
This commit is contained in:
zowoq 2025-03-01 09:54:31 +10:00
parent aa9b245a44
commit c71a27395b

View file

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