nixpkgs-update: disallow aliases in updatescript fetcher

This commit is contained in:
zowoq 2024-11-08 17:06:24 +10:00
parent c05b406fb8
commit eaf536c698

View file

@ -1,5 +1,5 @@
let
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/master.tar.gz") { };
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/master.tar.gz") { config.allowAliases = false; };
in
# code in the following let block was copied from nixos/nixpkgs under
# the MIT License