chore: initial commit

This commit is contained in:
technofab 2025-08-05 14:55:13 +02:00
commit 3aeff518bb
No known key found for this signature in database
20 changed files with 1122 additions and 0 deletions

11
lib/flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
inputs = {
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
};
outputs = inputs: {
lib = import ./. {
inherit (inputs.nixpkgs-lib) lib;
};
};
}