core/flake.nix

21 lines
426 B
Nix
Raw Normal View History

2025-08-05 14:55:13 +02:00
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
2025-08-05 14:55:13 +02:00
};
outputs = inputs: let
rensa = import ./lib {
inherit (inputs.nixpkgs-lib) lib;
2025-08-05 14:55:13 +02:00
};
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
];
} {};
}