Update backups.nix

This commit is contained in:
Bitcoin Txoko
2024-07-23 10:47:12 +02:00
committed by GitHub
parent 0b96e6d2a8
commit babc4d4b54
+7 -4
View File
@@ -1,8 +1,12 @@
### Backups
{
# Set this to enable nix-bitcoin's own backup service. By default, it
# uses duplicity to incrementally back up all important files in /var/lib to
# /var/lib/localBackups once a day.
{ services.backups.enable = true; }
services.backups.enable = true;
# If you also want to backup bulk data like the Bitcoin & Liquid blockchains
# and electrs data directory, enable
# services.backups.with-bulk-data = true;
#
# You can pull the localBackups folder with
# `scp -r bitcoin-node:/var/lib/localBackups /my-backup-path/`
@@ -16,6 +20,5 @@
# hostNames = [ "host" ];
# publicKey = "<ssh public from `ssh-keyscan`>";
# };
# If you also want to backup bulk data like the Bitcoin & Liquid blockchains
# and electrs data directory, enable
# services.backups.with-bulk-data = true;
}