mirror of
https://gitlab.com/TECHNOFAB/nixtest.git
synced 2025-12-16 20:13:53 +01:00
34 lines
752 B
Nix
34 lines
752 B
Nix
{
|
|
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 .#update-package"
|
|
"nix-portable nix run .#soonix:update"
|
|
];
|
|
lockFileMaintenance = {
|
|
enabled = true;
|
|
extends = ["schedule:monthly"];
|
|
};
|
|
nix.enabled = true;
|
|
gitlabci.enabled = false;
|
|
};
|
|
hook = {
|
|
mode = "copy";
|
|
gitignore = false;
|
|
};
|
|
opts.format = "json";
|
|
};
|
|
};
|
|
}).config
|