{ config, pkgs, lib, ... }: { services.navidrome = { enable = true; settings = { MusicFolder = "/data/fast/music"; Address = "0.0.0.0"; httpPort = "4533"; }; }; services.restic.backups = { navidrome = { paths = [ "/var/lib/navidrome/" ]; repository = "/data/slow/backups/systems"; passwordFile = config.age.secrets.restic-repo-systems.path; timerConfig = { OnCalendar = "00:35"; }; initialize = true; extraBackupArgs = [ "--tag navidrome" ]; pruneOpts = [ "--keep-daily 7" "--keep-weekly 4 --keep-monthly 6" ]; }; }; }