diff --git a/modules/restic.nix b/modules/restic.nix index 8b0be71..1ef37c3 100644 --- a/modules/restic.nix +++ b/modules/restic.nix @@ -2,7 +2,6 @@ let cfg = config.sbruder.restic; - name = "${config.networking.hostName}-system"; repository = "s3:https://s3.eu-central-1.wasabisys.com/sbruder-restic"; excludes = [ # Caches @@ -73,7 +72,7 @@ in restic-s3 = { }; }; - services.restic.backups."${name}" = { + services.restic.backups.system = { inherit repository; passwordFile = config.krops.secrets.restic-password.path; s3CredentialsFile = config.krops.secrets.restic-s3.path; @@ -91,7 +90,7 @@ in timerConfig = cfg.timerConfig; }; - systemd.services."restic-backups-${name}".serviceConfig = { + systemd.services."restic-backups-system".serviceConfig = { "Nice" = 10; "IOSchedulingClass" = "best-effort"; "IOSchedulingPriority" = 7;