Some checks failed
Update Nix Flake / update-flake (push) Failing after 16s
17 lines
344 B
Nix
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";
|
|
};
|
|
}
|