maintainers/scripts/update: disable aliases

This commit is contained in:
David McFarland 2024-11-14 19:54:24 -04:00
parent bfaca46529
commit e3736259f7

View File

@ -17,13 +17,13 @@
}: }:
let let
pkgs = import ./../../default.nix ( pkgs = import ./../../default.nix ((
if include-overlays == false then if include-overlays == false then
{ overlays = []; } { overlays = []; }
else if include-overlays == true then else if include-overlays == true then
{ } # Let Nixpkgs include overlays impurely. { } # Let Nixpkgs include overlays impurely.
else { overlays = include-overlays; } else { overlays = include-overlays; }
); ) // { config.allowAliases = false; });
inherit (pkgs) lib; inherit (pkgs) lib;