chore: initial commit

This commit is contained in:
technofab 2025-08-05 14:55:13 +02:00
commit 3aeff518bb
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
20 changed files with 1122 additions and 0 deletions

21
flake.nix Normal file
View file

@ -0,0 +1,21 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs = inputs: let
rensa = import ./lib {
inherit (inputs.nixpkgs) lib;
};
in
rensa.buildWith {
inherit inputs;
cellsFrom = ./cells;
cellBlocks = [
{
name = "test";
type = "test";
}
];
} {};
}