This commit is contained in:
parent
e90b71760f
commit
564fc0778f
1 changed files with 18 additions and 0 deletions
|
|
@ -57,6 +57,24 @@
|
||||||
];
|
];
|
||||||
hostPackages = with pkgs; [ bash coreutils git nix openssh bun ];
|
hostPackages = with pkgs; [ bash coreutils git nix openssh bun ];
|
||||||
};
|
};
|
||||||
|
renovate = {
|
||||||
|
enable = true;
|
||||||
|
schedule = "*:0"; # every hour
|
||||||
|
credentials.RENOVATE_TOKEN = "/mnt/data/apps/renovate/token.env";
|
||||||
|
settings = {
|
||||||
|
platform = "forgejo";
|
||||||
|
endpoint = "https://git.${homelab.domain}";
|
||||||
|
gitAuthor = "renovate <system@${homelab.domain}>";
|
||||||
|
autodiscover = true;
|
||||||
|
nix.enabled = true;
|
||||||
|
lockFileMaintenance = {
|
||||||
|
enabled = true;
|
||||||
|
commitMessageAction = "update lock file(s)";
|
||||||
|
schedule = [ "0 0 * * 0" ]; # weekly
|
||||||
|
};
|
||||||
|
};
|
||||||
|
runtimePackages = with pkgs; [ bun nodejs npm nix ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
systemd.services = {
|
systemd.services = {
|
||||||
"gitea-runner-nixos-deploy".restartIfChanged = false;
|
"gitea-runner-nixos-deploy".restartIfChanged = false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue