Just: update overlay used in nix-env setup

This commit is contained in:
Primrose 2025-05-20 18:16:39 +02:00
parent a018124975
commit c68631b3aa
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -30,9 +30,8 @@ env name action profilePath="~/.environments":
drv=$(nix-build -E " drv=$(nix-build -E "
let sources = import ./nix/sources.nix {}; let sources = import ./nix/sources.nix {};
pkgs = import sources.nixpkgs { pkgs = import sources.nixpkgs {
overlays = [ overlays = with (import ../overlays); [
(import ./nix/overlays) packages
(import ./nix/overlays/packages.nix)
]; ];
}; };
in pkgs.callPackage ./nix/environments/{{ name }}.nix {} in pkgs.callPackage ./nix/environments/{{ name }}.nix {}