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 "
let sources = import ./nix/sources.nix {};
pkgs = import sources.nixpkgs {
overlays = [
(import ./nix/overlays)
(import ./nix/overlays/packages.nix)
overlays = with (import ../overlays); [
packages
];
};
in pkgs.callPackage ./nix/environments/{{ name }}.nix {}