chore: initial commit

This commit is contained in:
technofab 2025-07-31 12:37:19 +02:00
commit fbacfc149b
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
21 changed files with 748 additions and 0 deletions

34
flake.nix Normal file
View file

@ -0,0 +1,34 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
std = {
url = "github:divnix/std";
inputs = {
nixpkgs.follows = "nixpkgs";
lib.follows = "nixpkgs";
paisano-tui.follows = "";
dmerge.follows = "";
blank.follows = "";
};
};
};
outputs = {
self,
std,
...
} @ inputs:
std.growOn
{
inherit inputs;
cellsFrom = ./.nix;
cellBlocks = with std.blockTypes; [
(devshells "devShells")
(pkgs "tests")
(runnables "benchmark")
];
}
{
packages = std.harvest self [["repo" "tests"] ["repo" "benchmark"]];
};
}