nixos-config/services/restic-backup.nix

90 lines
2 KiB
Nix
Raw Normal View History

2021-08-09 19:34:23 +02:00
{ config, lib, pkgs, ... }:
let
2022-01-11 16:08:21 +01:00
inherit (lib)
attrsets
concatStringsSep
mkEnableOption
mkIf
mkOption
optional
;
2021-08-09 19:34:23 +02:00
cfg = config.my.services.restic-backup;
secrets = config.my.secrets;
2022-01-11 16:08:21 +01:00
excludeArg = "--exclude-file=" + (pkgs.writeText "excludes.txt" (concatStringsSep "\n" cfg.exclude));
2021-08-09 19:34:23 +02:00
makePruneOpts = pruneOpts:
attrsets.mapAttrsToList (name: value: "--keep-${name} ${toString value}") pruneOpts;
in {
2022-01-11 16:08:21 +01:00
options.my.services.restic-backup = let inherit (lib) types; in {
2021-08-09 19:34:23 +02:00
enable = mkEnableOption "Enable Restic backups for this host";
repo = mkOption {
type = types.str;
default = null;
example = "/mnt/hdd";
description = "Restic backup repo";
};
paths = mkOption {
2022-01-11 16:08:21 +01:00
type = types.listOf types.str;
2021-08-09 19:34:23 +02:00
default = [ ];
example = [
"/var/lib"
"/home"
];
description = "Paths to backup";
};
exclude = mkOption {
2022-01-11 16:08:21 +01:00
type = types.listOf types.str;
2021-08-09 19:34:23 +02:00
default = [ ];
example = [
# very large paths
"/var/lib/docker"
"/var/lib/systemd"
"/var/lib/libvirt"
# temporary files created by `cargo` and `go build`
"**/target"
"/home/*/go/bin"
"/home/*/go/pkg"
];
description = "Paths to exclude from backup";
};
prune = mkOption {
type = types.attrs;
default = {
daily = 7;
weekly = 4;
monthly = 6;
};
};
};
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.restic ];
services.restic.backups.backblaze = {
initialize = true;
paths = cfg.paths;
repository = cfg.repo;
passwordFile = "/root/restic/password";
2021-11-17 00:58:54 +01:00
environmentFile = "/root/restic/creds";
2021-08-09 19:34:23 +02:00
2021-08-09 20:14:09 +02:00
extraBackupArgs = [ "--verbose=2" ]
2022-01-11 16:08:21 +01:00
++ optional (builtins.length cfg.exclude != 0) excludeArg;
2021-08-09 19:34:23 +02:00
timerConfig = {
OnCalendar = "daily";
};
pruneOpts = makePruneOpts cfg.prune;
};
};
}