12 lines
181 B
Nix
12 lines
181 B
Nix
{ overlays }:
|
|
|
|
{
|
|
invoice-ninja = import ./invoice-ninja.nix;
|
|
overlayNixpkgsForThisInstance =
|
|
{ pkgs, ... }: {
|
|
nixpkgs = {
|
|
inherit overlays;
|
|
};
|
|
};
|
|
}
|