{ pkgs, ... }: { systemd.services."weekly-rebuild" = { serviceConfig = { Type = "oneshot"; ExecStart = "${pkgs.bash}/bin/bash -c 'nixos-rebuild --boot --flake git+https://git.t-juice.club/torjus/nixos-servers'"; }; }; systemd.timers."weekly-rebuild" = { enable = true; wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = "Sun 06:00:00"; }; }; }