Torjus Håkestad
54ee47b2db
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m39s
17 lines
401 B
Nix
17 lines
401 B
Nix
{ pkgs, ... }:
|
|
{
|
|
systemd.services."weekly-rebuild" = {
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.nixos-rebuild}/bin/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";
|
|
};
|
|
};
|
|
}
|