12 lines
182 B
Nix

{ overlays }:
{
invoice-ninja = import ./invoice-ninja.nix;
overlayNixpkgsForThisInstance =
{ pkgs, ... }: {
nixpkgs = {
inherit overlays;
};
};
};