blob: 92700bf26ab3989db33ea515e67d5adaec7ba4a4 (
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
|
{
lib,
pkgs,
config,
...
}: let
backup-script = pkgs.writeShellScriptBin "backsnap" ''
set -xeu;
${pkgs.util-linux}/bin/mount --mkdir "/dev/disk/by-uuid/${cfg.backupDiskUuid}" "/run/media/${cfg.backupDiskUuid}";
${pkgs.snap-sync-forked}/bin/snap-sync-forked --UUID "${cfg.backupDiskUuid}" --noconfirm;
${pkgs.util-linux}/bin/umount "/run/media/${cfg.backupDiskUuid}";
'';
cfg = config.soispha.services.backup;
in {
options.soispha.services.backup = {
enable = lib.mkEnableOption "backups with my forked snap-sync";
backupDiskUuid = lib.mkOption {
type = lib.types.str;
example = lib.literalExpression "d1d20ae7-3d8a-44da-86da-677dbbb10c89";
description = "The UUID of the backup disk";
};
};
config = lib.mkIf cfg.enable {
systemd = {
services.backup = {
wantedBy = lib.mkForce [];
unitConfig = {
Description = "Backup the last snapshots of the persitent-storage subvolume.";
};
serviceConfig = {
Type = "oneshot";
ExecStart = "${backup-script}/bin/backsnap";
};
};
timers.backup = {
wantedBy = ["timers.target"];
unitConfig = {
Description = "Backup 15min after boot and every 8 hours";
};
timerConfig = {
OnBootSec = "15min";
OnUnitActiveSec = "8h";
};
};
};
};
}
|