Updated repo to make it a Nix Flake

This commit is contained in:
2024-12-27 16:18:59 -05:00
parent 038d6fb3bf
commit 209f5d3454
4 changed files with 48 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
{ overlays }:
{
invoice-ninja = import ./invoice-ninja.nix
overlayNixpkgsForThisInstance =
{ pkgs, ... }: {
nixpkgs = {
inherit overlays;
};
};
};