12 lines
179 B
Nix

{ overlays }:
{
invoiceninja = import ./invoiceninja.nix;
overlayNixpkgsForThisInstance =
{ pkgs, ... }: {
nixpkgs = {
inherit overlays;
};
};
}