Open yajo opened 2 years ago
I finally found the workaround after several hours: not using the flake. Example:
inputs = {
mach-nix = {url="github:DavHau/mach-nix";flake=false;};
...
};
outputs = {self, nixpkgs, ... } @ inputs:
let mach-nix = import inputs.mach-nix {inherit pkgs;};
pkgs = import nixpkgs {
inherit system;
overlays = [ overlayPython36 ];
};
overlayPython36 = ...; # overlay from above
...
}
I still think there should be a simple way to pass overlays when using the flake as normal. 😕
Hello. I have a simple overlay in my flake:
How am I supposed to pass that overlay to the
nixpkgs
input of mach-nix's flake?@moduon MT-83