This commit is contained in:
xenia 2024-10-21 17:48:14 -04:00
parent cadc488726
commit 82e912d572
1 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@ let
sha256 = lockFile.nodes.lix-module.locked.narHash;
};
in
args:
{ overlays ? [] } @ args:
import "${nixpkgs}" {
overlays = [
(import ./overlay.nix)
(import "${lix-module}/overlay.nix" { inherit lix; })
] ++ args.overlays;
] ++ overlays;
} // (builtins.removeAttrs args [ "overlays" ])