From 4da42e98a0d6aca34fa94a5b8602da11b594c66e Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Mon, 9 Sep 2024 00:07:55 +0700 Subject: [PATCH] podman: auto update scheduled at 4am --- system/podman/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/podman/default.nix b/system/podman/default.nix index 076bfc5..382c674 100644 --- a/system/podman/default.nix +++ b/system/podman/default.nix @@ -15,6 +15,9 @@ in systemd.timers."podman-auto-update" = { enable = true; wantedBy = [ "multi-user.target" ]; + timerConfig = { + OnCalendar = "*-*-* 04:00:00"; + }; }; virtualisation.containers.enable = true; virtualisation.oci-containers.backend = "podman";