blob: f107609586ed1d5af077b3f64872c04ed099362c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Configure restic backups to Google Cloud Storage.
#
# Conventions: Restic state is kept in /var/backup/restic, with
# secrets in /var/backup/restic/secret.
{ config, lib, pkgs, ... }:
let
cfg = config.services.depot.restic;
description = "Restic backups to GCS";
mkStringOption = default: lib.mkOption {
inherit default;
type = lib.types.string;
};
in {
options.services.depot.restic = {
enable = lib.mkEnableOption description;
project = mkStringOption "tazjins-infrastructure";
credentialPath = mkStringOption "/var/backup/restic/gcp-key.json";
repository = mkStringOption "gs:tvl-fyi-backups:/whitby";
interval = mkStringOption "hourly";
paths = with lib; mkOption {
description = "Directories that should be backed up";
type = types.listOf types.string;
};
exclude = with lib; mkOption {
description = "Files that should be excluded from backups";
type = types.listOf types.string;
};
};
config = lib.mkIf cfg.enable {
# Regularly back up whitby to Google Cloud Storage.
systemd.services.restic = {
description = "Backups to Google Cloud Storage";
script = "${pkgs.restic}/bin/restic backup ${lib.concatStringsSep " " cfg.paths}";
environment = {
GOOGLE_PROJECT_ID = cfg.project;
GOOGLE_APPLICATION_CREDENTIALS = cfg.credentialPath;
RESTIC_REPOSITORY = cfg.repository;
RESTIC_PASSWORD_FILE = "/var/backup/restic/secret";
RESTIC_CACHE_DIR = "/var/backup/restic/cache";
RESTIC_EXCLUDE_FILE =
builtins.toFile "exclude-files" (lib.concatStringsSep "\n" cfg.exclude);
};
};
systemd.timers.restic = {
wantedBy = [ "multi-user.target" ];
timerConfig.OnCalendar = cfg.interval;
};
};
}
|