just expose reclamation folder

This commit is contained in:
2026-01-02 15:37:00 +01:00
parent 8a40f022f6
commit c092c5353b
2 changed files with 29 additions and 11 deletions

25
flake.lock generated Normal file
View File

@@ -0,0 +1,25 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1767273430,
"narHash": "sha256-kDpoFwQ8GLrPiS3KL+sAwreXrph2KhdXuJzo5+vSLoo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "76eec3925eb9bbe193934987d3285473dbcfad50",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

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