Add backup-helper to ha1

This commit is contained in:
Torjus Håkestad 2024-06-03 00:18:25 +02:00
parent 99e2282078
commit e651c1a4e9
2 changed files with 13 additions and 0 deletions

View File

@ -73,6 +73,7 @@
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/ha1
sops-nix.nixosModules.sops
backup-helper.nixosModules.backup-helper
];
};
template1 = nixpkgs.lib.nixosSystem {

View File

@ -44,6 +44,18 @@
git
];
# Backup service dirs
sops.secrets."backup_helper_secret" = { };
backup-helper = {
enable = true;
password-file = "/run/secrets/backup_helper_secret";
backup-dirs = [
"/var/lib/hass"
"/var/lib/zigbee2mqtt"
"/var/lib/mosquitto"
];
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];