Finish nix-cache
Some checks failed
Run nix flake check / flake-check (push) Failing after 4m3s

This commit is contained in:
2025-01-24 15:48:03 +01:00
parent e70e892ab2
commit 006d0b9213
9 changed files with 85 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ in
{
systemd.services."build-flakes" = {
serviceConfig = {
Type = "oneshot";
Type = "exec";
ExecStart = "${build-flake-script}/bin/build-flake-script";
};
};
@@ -36,7 +36,7 @@ in
enable = true;
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "Sun 06:00:00";
OnCalendar = "*-*-* *:30:00";
};
};
}