core/flake.nix
2025-08-05 14:55:13 +02:00

21 lines
362 B
Nix

{
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";
}
];
} {};
}