chore(repo): add soonix to generate .gitlab-ci.yml

This commit is contained in:
technofab 2025-09-02 10:35:35 +02:00
parent e074d716c4
commit 6e4347af69
No known key found for this signature in database
5 changed files with 137 additions and 2 deletions

View file

@ -1,7 +1,13 @@
{inputs, ...}: let
inherit (inputs) pkgs devshell treefmt;
{
cell,
inputs,
...
}: let
inherit (inputs) pkgs devshell treefmt soonix;
inherit (cell) ci;
in {
default = devshell.mkShell {
imports = [soonix.devshellModule];
packages = [
pkgs.nil
(treefmt.mkWrapper pkgs {
@ -23,5 +29,7 @@ in {
};
})
];
soonix.hooks."ci" = ci.soonix;
};
}