chore: add CI

This commit is contained in:
technofab 2025-09-17 14:30:50 +02:00
parent 9c1a29fa9b
commit 39af3af902
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
6 changed files with 94 additions and 3 deletions

View file

@ -1,7 +1,13 @@
{inputs, ...}: let
inherit (inputs) pkgs dslib treefmt;
{
inputs,
cell,
...
}: let
inherit (inputs) pkgs dslib soonix treefmt;
inherit (cell) ci;
in {
default = dslib.mkShell {
imports = [soonix.devshellModule];
packages = [
(treefmt.mkWrapper pkgs {
programs = {
@ -12,5 +18,6 @@ in {
})
];
enterShellCommands."ren".text = "echo Hello rensa!";
soonix.hooks.ci = ci.soonix;
};
}