109 lines
3.2 KiB
Nix
109 lines
3.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
secretsDir,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
mapAttrs'
|
|
mkDefault
|
|
mkIf
|
|
mkOption
|
|
nameValuePair
|
|
;
|
|
inherit (lib.types)
|
|
attrsOf
|
|
nullOr
|
|
str
|
|
submodule
|
|
;
|
|
in
|
|
{
|
|
options.backups.postgresql = mkOption {
|
|
description = ''
|
|
Periodic backups of postgresql database to create using Rustic.
|
|
'';
|
|
type = attrsOf (
|
|
submodule (
|
|
{ name, ... }:
|
|
{
|
|
options = {
|
|
dbName = mkOption {
|
|
type = str;
|
|
default = name;
|
|
description = "Name of database to backup";
|
|
};
|
|
proxyAddress = mkOption {
|
|
type = nullOr str;
|
|
default = null;
|
|
description = "Optional https proxy for connection to backblaze.";
|
|
};
|
|
};
|
|
}
|
|
)
|
|
);
|
|
default = { };
|
|
};
|
|
imports = [ inputs.ataraxiasjel-nur.nixosModules.rustic ];
|
|
config = mkIf (config.backups.postgresql != { }) {
|
|
sops.secrets.rustic-postgresql-s3-env.sopsFile = mkDefault (secretsDir + /rustic.yaml);
|
|
sops.secrets.rustic-postgresql-pass.sopsFile = mkDefault (secretsDir + /rustic.yaml);
|
|
sops.secrets.rustic-postgresql-s3-env.owner = "postgres";
|
|
sops.secrets.rustic-postgresql-pass.owner = "postgres";
|
|
|
|
services.rustic.backups = mapAttrs' (
|
|
name: backup:
|
|
nameValuePair "postgresql-${name}" {
|
|
backup = true;
|
|
prune = true;
|
|
initialize = true;
|
|
user = "postgres";
|
|
extraEnvironment.https_proxy = mkIf (backup.proxyAddress != null) backup.proxyAddress;
|
|
environmentFile = config.sops.secrets.rustic-postgresql-s3-env.path;
|
|
pruneOpts = [ "--repack-cacheable-only=false" ];
|
|
timerConfig = {
|
|
OnCalendar = "daily";
|
|
Persistent = true;
|
|
};
|
|
# Backup postgresql db and pass it to rustic through stdin
|
|
# Runs this command:
|
|
# pg_dump ${dbName} | zstd --rsyncable --stdout - | rustic -P postgresql-authentik backup -
|
|
backupCommandPrefix = "${config.services.postgresql.package}/bin/pg_dump --clean ${backup.dbName} | ${pkgs.zstd}/bin/zstd --rsyncable --stdout - |";
|
|
extraBackupArgs = [ "-" ];
|
|
# Rustic profile yaml
|
|
settings = {
|
|
repository = {
|
|
repository = "opendal:s3";
|
|
password-file = config.sops.secrets.rustic-postgresql-pass.path;
|
|
options = {
|
|
root = backup.dbName;
|
|
bucket = "ataraxia-postgresql-backups";
|
|
region = "eu-central-003";
|
|
endpoint = "https://s3.eu-central-003.backblazeb2.com";
|
|
};
|
|
};
|
|
backup = {
|
|
host = config.networking.hostName;
|
|
label = backup.dbName;
|
|
ignore-devid = true;
|
|
group-by = "label";
|
|
skip-identical-parent = true;
|
|
stdin-filename = "${backup.dbName}.dump.zst";
|
|
};
|
|
forget = {
|
|
filter-labels = [ backup.dbName ];
|
|
group-by = "label";
|
|
prune = true;
|
|
keep-daily = 4;
|
|
keep-weekly = 2;
|
|
keep-monthly = 1;
|
|
};
|
|
};
|
|
}
|
|
) config.backups.postgresql;
|
|
};
|
|
}
|