This commit is contained in:
2026-01-02 14:53:38 +01:00
commit 1b961c0df8
3634 changed files with 547921 additions and 0 deletions

22
flake.nix Normal file
View File

@@ -0,0 +1,22 @@
{
inputs = {
utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
utils,
}:
utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages = {
reclamation = ./.;
};
}
);
}