|
|
@ -50,6 +50,21 @@ |
|
|
|
fsType = "nfs"; |
|
|
|
}; |
|
|
|
|
|
|
|
# Enable backups to Moria via rsync |
|
|
|
systemd.services.rsync_backup = { |
|
|
|
serviceConfig.Type = "oneshot"; |
|
|
|
path = with pkgs; [ rsync ]; |
|
|
|
script = '' |
|
|
|
rsync -a --delete /var/games/minecraft/ moria.local::CRIMESPOON/minecraft/ |
|
|
|
''; |
|
|
|
}; |
|
|
|
|
|
|
|
systemd.timers.rsync_backup = { |
|
|
|
wantedBy = [ "timers.target" ]; |
|
|
|
partOf = [ "rsync_backup.service" ]; |
|
|
|
timerConfig.OnCalendar="*-*-* 2:00:00"; |
|
|
|
}; |
|
|
|
|
|
|
|
services.openssh.enable = true; |
|
|
|
system.stateVersion = "21.11"; # Did you read the comment? |
|
|
|
} |
|
|
|