dotfiles/hosts/common/global/auto-upgrade.nix
Julian Mutter fd246d7daf
Some checks failed
Update Nix Flake / update-flake (push) Failing after 16s
Add hydra-auto-upgrade module, still wip
2025-05-16 13:13:47 +02:00

17 lines
344 B
Nix

{
inputs,
config,
...
}: {
system.hydraAutoUpgrade = {
# Only enable if not dirty
enable = inputs.self ? rev;
dates = "*:0/10"; # Every 10 minutes
instance = "http://hydra.julian-mutter.de";
project = "dotfiles";
jobset = "main";
job = "hosts.${config.networking.hostName}";
oldFlakeRef = "self";
};
}