mirror of
https://gitlab.com/rensa-nix/core.git
synced 2026-02-02 07:15:08 +01:00
chore: initial commit
This commit is contained in:
commit
3aeff518bb
20 changed files with 1122 additions and 0 deletions
21
flake.nix
Normal file
21
flake.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
} {};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue