mirror of
https://gitlab.com/rensa-nix/utils.git
synced 2026-02-02 08:45:13 +01:00
chore: add devtools
This commit is contained in:
parent
14d663b720
commit
a9578d582c
8 changed files with 155 additions and 35 deletions
38
nix/repo/soonix.nix
Normal file
38
nix/repo/soonix.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
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"
|
||||
];
|
||||
executionMode = "branch";
|
||||
};
|
||||
lockFileMaintenance = {
|
||||
enabled = true;
|
||||
extends = ["schedule:monthly"];
|
||||
branchTopic = "lock-file-maintenance-{{packageFile}}";
|
||||
commitMessageExtra = "({{packageFile}})";
|
||||
};
|
||||
nix.enabled = true;
|
||||
gitlabci.enabled = false;
|
||||
};
|
||||
hook = {
|
||||
mode = "copy";
|
||||
gitignore = false;
|
||||
};
|
||||
opts.format = "json";
|
||||
};
|
||||
};
|
||||
}).config
|
||||
Loading…
Add table
Add a link
Reference in a new issue