Torjus Håkestad
5a5773fc79
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled
25 lines
669 B
Nix
25 lines
669 B
Nix
{ pkgs, ... }:
|
|
{
|
|
systemd.services."weekly-rebuild" = {
|
|
path = [
|
|
pkgs.git
|
|
pkgs.nix
|
|
];
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.nixos-rebuild}/bin/nixos-rebuild boot --flake git+https://git.t-juice.club/torjus/nixos-servers";
|
|
ExecStartPost = [
|
|
"${pkgs.nix}/bin/nix-collect-garbage --delete-older-than 30d"
|
|
"${pkgs.nixos-rebuild}/bin/nixos-rebuild switch --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";
|
|
};
|
|
};
|
|
}
|