1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Use a single Restic repository for a whole host

This commit is contained in:
RGBCube 2024-04-30 12:56:08 +03:00
parent b3a23637f9
commit 1eb906e040
No known key found for this signature in database

View file

@ -3,9 +3,8 @@
systemConfiguration {
secrets.resticPassword.file = ./password.age;
services.restic.backups = let
defaultConfig = name: {
repository = "sftp:backup@disk:${config.networking.hostName}-${name}";
services.restic.backups.disk = {
repository = "sftp:backup@disk:${config.networking.hostName}-backup";
passwordFile = config.secrets.resticPassword.path;
initialize = true;
@ -20,10 +19,10 @@ systemConfiguration {
OnCalendar = "daily";
Persistent = true;
};
};
in {
general = (defaultConfig "general") // {
paths = map (dir: "/var/lib/${dir}") [
paths = [
"/tmp/postgresql-dump.sql.gz"
] ++ map (dir: "/var/lib/${dir}") [
"dkim"
"forgejo"
"gitea-runner"
@ -34,10 +33,6 @@ systemConfiguration {
"nextcloud"
"postfix"
];
};
postgresql = (defaultConfig "postgresql") // {
paths = [ "/tmp/postgresql-dump.sql.gz" ];
backupPrepareCommand = ''
${config.services.postgresql.package}/bin/pg_dumpall --clean \
@ -49,5 +44,4 @@ systemConfiguration {
rm /tmp/postgresql-dump.sql.gz
'';
};
};
}