11 lines
174 B
Nix
11 lines
174 B
Nix
|
|
{upkgs, ...}: {
|
||
|
|
nixpkgs.overlays = [
|
||
|
|
(self: super: {
|
||
|
|
ekphos = import ../packages/ekphos.nix {
|
||
|
|
inherit upkgs;
|
||
|
|
pkgs = super;
|
||
|
|
};
|
||
|
|
})
|
||
|
|
];
|
||
|
|
}
|