core/flake.nix

20 lines
364 B
Nix
Raw Normal View History

2025-08-05 14:55:13 +02:00
{
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;
2025-08-05 16:15:24 +02:00
cellBlocks = with rensa.blocks; [
(simple "test")
(simple "devShells")
2025-08-05 14:55:13 +02:00
];
} {};
}