nixos/locate: persist updatedb timer

This commit is contained in:
Sandro Jäckel 2024-07-05 20:08:10 +02:00
parent 015ea99aea
commit dd743c70ee
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -297,7 +297,10 @@ in
description = "Update timer for locate database";
partOf = [ "update-locatedb.service" ];
wantedBy = [ "timers.target" ];
timerConfig.OnCalendar = cfg.interval;
timerConfig = {
OnCalendar = cfg.interval;
Persistent = true;
};
};
};