chore: add docs & CI

This commit is contained in:
technofab 2025-10-06 17:18:22 +02:00
parent 3363059b65
commit f8f5dbd535
No known key found for this signature in database
18 changed files with 407 additions and 26 deletions

View file

@ -4,7 +4,11 @@
ren.url = "gitlab:rensa-nix/core?dir=lib";
};
outputs = {ren, ...} @ inputs:
outputs = {
ren,
self,
...
} @ inputs:
ren.buildWith
{
inherit inputs;
@ -16,7 +20,14 @@
};
cellBlocks = with ren.blocks; [
(simple "devShells")
(simple "docs")
(simple "ci")
];
}
{};
{
packages = ren.select self [
["repo" "docs"]
["repo" "ci" "packages"]
];
};
}