a2466b1127
`generate-secrets` is no longer a monolithic script. Instead, it's composed of the values of option `nix-bitcoin.generateSecretsCmds`. This has the following advantages: - generate-secrets is now extensible by users - Only secrets of enabled services are generated - RPC IPs in the `lnd` and `loop` certs are no longer hardcoded. Secrets are no longer automatically generated when entering nix-shell. Instead, they are generated before deployment (via `krops-deploy`) because secrets generation is now dependant on the node configuration.
111 lines
3.5 KiB
Nix
111 lines
3.5 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.backups;
|
|
|
|
filelist = pkgs.writeText "filelist.txt" ''
|
|
${optionalString (!cfg.with-bulk-data) "- ${config.services.bitcoind.dataDir}/blocks"}
|
|
${optionalString (!cfg.with-bulk-data) "- ${config.services.bitcoind.dataDir}/chainstate"}
|
|
${config.services.bitcoind.dataDir}
|
|
${config.services.clightning.dataDir}
|
|
${config.services.lnd.dataDir}
|
|
${optionalString (!cfg.with-bulk-data) "- ${config.services.liquidd.dataDir}/*/blocks"}
|
|
${optionalString (!cfg.with-bulk-data) "- ${config.services.liquidd.dataDir}/*/chainstate"}
|
|
${config.services.liquidd.dataDir}
|
|
${optionalString cfg.with-bulk-data "${config.services.electrs.dataDir}"}
|
|
${config.services.nbxplorer.dataDir}
|
|
${config.services.btcpayserver.dataDir}
|
|
${config.services.joinmarket.dataDir}
|
|
${optionalString config.nix-bitcoin.generateSecrets "${config.nix-bitcoin.secretsDir}"}
|
|
/var/lib/tor
|
|
/var/lib/nixos
|
|
|
|
${builtins.concatStringsSep "\n" postgresqlBackupPaths}
|
|
|
|
# Extra files
|
|
${cfg.extraFiles}
|
|
|
|
# Exclude all unspecified files and directories
|
|
- /
|
|
'';
|
|
|
|
postgresqlBackupDir = config.services.postgresqlBackup.location;
|
|
postgresqlBackupPaths = map (db: "${postgresqlBackupDir}/${db}.sql.gz") cfg.postgresqlDatabases;
|
|
postgresqlBackupServices = map (db: "postgresqlBackup-${db}.service") cfg.postgresqlDatabases;
|
|
in {
|
|
options.services.backups = {
|
|
enable = mkEnableOption "Backups service";
|
|
with-bulk-data = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to also backup Bitcoin blockchain and other bulk data.
|
|
'';
|
|
};
|
|
destination = mkOption {
|
|
type = types.str;
|
|
default = "file:///var/lib/localBackups";
|
|
description = ''
|
|
Where to back up to.
|
|
'';
|
|
};
|
|
frequency = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = ''
|
|
Run backup with the given frequency. If null, do not run automatically.
|
|
'';
|
|
};
|
|
postgresqlDatabases = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
description = "List of database names to backup.";
|
|
};
|
|
extraFiles = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
example = ''
|
|
/var/lib/nginx
|
|
'';
|
|
description = "Additional files to be appended to filelist.";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.duplicity ];
|
|
|
|
services.duplicity = {
|
|
enable = true;
|
|
extraFlags = [
|
|
"--include-filelist" "${filelist}"
|
|
"--full-if-older-than" "1M"
|
|
];
|
|
targetUrl = cfg.destination;
|
|
frequency = cfg.frequency;
|
|
secretFile = "${config.nix-bitcoin.secretsDir}/backup-encryption-env";
|
|
};
|
|
|
|
systemd.services.duplicity = {
|
|
wants = postgresqlBackupServices;
|
|
after = postgresqlBackupServices;
|
|
};
|
|
|
|
services.postgresqlBackup = {
|
|
enable = mkIf (cfg.postgresqlDatabases != []) true;
|
|
databases = cfg.postgresqlDatabases;
|
|
};
|
|
|
|
nix-bitcoin.secrets.backup-encryption-env.user = "root";
|
|
nix-bitcoin.generateSecretsCmds.backups = ''
|
|
makePasswordSecret backup-encryption-password
|
|
if [[ backup-encryption-password -nt backup-encryption-env ]]; then
|
|
echo "PASSPHRASE=$(cat backup-encryption-password)" > backup-encryption-env
|
|
fi
|
|
'';
|
|
|
|
services.backups.postgresqlDatabases = mkIf config.services.btcpayserver.enable [ "btcpaydb" ];
|
|
};
|
|
}
|