restic: Remove hostname from service name

pull/30/head
Simon Bruder 2021-01-08 21:33:45 +01:00
parent a981641273
commit 39742c8fbd
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 2 additions and 3 deletions

View File

@ -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;