2025-12-19 15:03:08 +01:00
|
|
|
{
|
|
|
|
|
inputs,
|
|
|
|
|
cell,
|
|
|
|
|
...
|
|
|
|
|
}: let
|
|
|
|
|
inherit (inputs) soonix;
|
|
|
|
|
inherit (cell) ci;
|
|
|
|
|
in
|
|
|
|
|
(soonix.make {
|
|
|
|
|
hooks = {
|
|
|
|
|
ci = ci.soonix;
|
|
|
|
|
renovate = {
|
|
|
|
|
output = ".gitlab/renovate.json5";
|
|
|
|
|
data = {
|
|
|
|
|
extends = ["config:recommended"];
|
|
|
|
|
postUpgradeTasks = {
|
|
|
|
|
commands = [
|
|
|
|
|
"nix-portable nix run .#soonix:update"
|
|
|
|
|
];
|
2025-12-19 16:09:32 +01:00
|
|
|
executionMode = "branch";
|
2025-12-19 15:03:08 +01:00
|
|
|
};
|
|
|
|
|
lockFileMaintenance = {
|
|
|
|
|
enabled = true;
|
|
|
|
|
extends = ["schedule:monthly"];
|
|
|
|
|
};
|
|
|
|
|
nix.enabled = true;
|
|
|
|
|
gitlabci.enabled = false;
|
|
|
|
|
};
|
|
|
|
|
hook = {
|
|
|
|
|
mode = "copy";
|
|
|
|
|
gitignore = false;
|
|
|
|
|
};
|
|
|
|
|
opts.format = "json";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}).config
|