2020-06-11 04:39:17 -07:00
|
|
|
{ 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}
|
|
|
|
/secrets/lnd-seed-mnemonic
|
|
|
|
${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.lightning-charge.dataDir}
|
2020-08-26 01:26:30 -07:00
|
|
|
${config.services.nbxplorer.dataDir}
|
|
|
|
${config.services.btcpayserver.dataDir}
|
2020-09-01 07:50:55 -07:00
|
|
|
${config.services.joinmarket.dataDir}
|
2020-09-11 04:53:12 -07:00
|
|
|
/secrets/jm-wallet-seed
|
2020-09-22 09:40:20 -07:00
|
|
|
${config.services.postgresqlBackup.location}/btcpaydb.sql.gz
|
2020-06-11 04:39:17 -07:00
|
|
|
/var/lib/tor
|
|
|
|
# Extra files
|
|
|
|
${cfg.extraFiles}
|
|
|
|
|
|
|
|
# Exclude all unspecified files and directories
|
|
|
|
- /
|
|
|
|
'';
|
|
|
|
|
|
|
|
in {
|
|
|
|
options.services.backups = {
|
|
|
|
enable = mkEnableOption "Backups service";
|
|
|
|
program = mkOption {
|
|
|
|
type = types.enum [ "duplicity" ];
|
|
|
|
default = "duplicity";
|
|
|
|
description = ''
|
|
|
|
Program with which to do backups.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
extraFiles = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = ''
|
|
|
|
/var/lib/nginx
|
|
|
|
'';
|
|
|
|
description = "Additional files to be appended to filelist.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-09-22 09:40:20 -07:00
|
|
|
config = mkIf (cfg.enable && cfg.program == "duplicity") (mkMerge [
|
|
|
|
{
|
2020-06-11 04:39:17 -07:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
|
|
|
nix-bitcoin.secrets.backup-encryption-env.user = "root";
|
2020-09-22 09:40:20 -07:00
|
|
|
}
|
|
|
|
(mkIf config.services.btcpayserver.enable {
|
|
|
|
services.postgresqlBackup = {
|
|
|
|
enable = true;
|
|
|
|
databases = [ "btcpaydb" ];
|
|
|
|
startAt = [];
|
|
|
|
};
|
|
|
|
systemd.services.duplicity = rec {
|
|
|
|
wants = [ "postgresqlBackup-btcpaydb.service" ];
|
|
|
|
after = wants;
|
|
|
|
};
|
2020-06-11 04:39:17 -07:00
|
|
|
})
|
2020-09-22 09:40:20 -07:00
|
|
|
]);
|
2020-06-11 04:39:17 -07:00
|
|
|
}
|