1
0
Fork 0
nixos-config/home-manager/roles/hourly-maintenance.nix
2021-07-09 00:27:52 +02:00

17 lines
438 B
Nix

{ pkgs, config, ... }:
{
systemd.user = {
services.maintenance = {
Unit.Description = "Routine maintenance";
Service = {
Type = "oneshot";
ExecStart = "${config.home.profileDirectory}/bin/maintenance --only-on-update";
};
};
timers.maintenance = {
Unit.Description = "Hourly maintenance";
Timer.OnCalendar = "hourly";
Install.WantedBy = [ "timers.target" ];
};
};
}