chore: add renovate and update repo flake

This commit is contained in:
technofab 2025-12-19 15:03:08 +01:00
parent 0ce18964f5
commit a4295c3cdb
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
8 changed files with 90 additions and 26 deletions

View file

@ -3,8 +3,8 @@
cell,
...
}: let
inherit (inputs) self pkgs devshell soonix treefmt;
inherit (cell) ci;
inherit (inputs) self pkgs devshell treefmt;
inherit (cell) soonix;
treefmtWrapper = treefmt.mkWrapper pkgs {
programs = {
@ -20,7 +20,6 @@ in {
"${self}/lib/modules"
soonix.devshellModule
];
soonix.hooks.ci = ci.soonix;
packages = [
pkgs.hello
treefmtWrapper
@ -46,6 +45,11 @@ in {
run = "${treefmtWrapper}/bin/treefmt";
env.TERM = "dumb";
}
{
name = "soonix";
stage_fixed = true;
run = "${soonix.shellHookFile}";
}
];
};
};