2024-06-02 21:43:34 +02:00
2025-01-27 22:35:16 +01:00
2024-10-04 01:27:25 +02:00

backup-helper

Small NixOS module to do backups to my NAS.

Usage example

# Example uses sops to store repo password
sops.secrets."backup_helper_secret" = { };
backup-helper = {
  enable = true;
  password-file = "/run/secrets/backup_helper_secret";
  # Dirs to backup
  backup-dirs = [
    "/var/lib/important-data"
    "/home/user/stuff"
  ];
};

See this for all options and defaults.

Description
No description provided
Readme 57 KiB
Languages
Nix 71.7%
Shell 28.3%