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

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;
};
};
};