backup-helper/backup.nix

78 lines
2.2 KiB
Nix
Raw Normal View History

2024-06-02 21:12:25 +00:00
{ lib, config, pkgs, utils, ... }:
2024-06-02 19:35:28 +00:00
let
cfg = config.backup-helper;
2024-06-02 21:23:09 +00:00
escaped-path = "/etc/machine-id";
2024-06-02 19:35:28 +00:00
restic-wrapper = pkgs.writeShellApplication {
name = "restic-wrapper";
runtimeInputs = [
pkgs.restic
pkgs.systemd
];
text = ''
2024-06-02 20:23:36 +00:00
if [ "$#" -ne 1 ]; then
echo "Need exactly one argument, the path to backup.";
exit 1;
fi
2024-06-02 20:58:46 +00:00
path="$1";
echo "Starting backup of $path";
2024-06-02 21:15:23 +00:00
# restic backup ${escaped-path};
2024-06-02 19:35:28 +00:00
'';
};
in
{
options.backup-helper.enable = lib.mkEnableOption "Enable backup-helper";
options.backup-helper = {
restic-repository = lib.mkOption {
type = lib.types.str;
default = "rest:http://10.69.12.52:8000/backup-nix";
description = "Repository to use for restic backup.";
};
backup-dirs = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
description = "Directories to be backed up.";
};
schedule = lib.mkOption {
type = lib.types.str;
default = "*-*-* 00:00:00";
description = "Schedule for backups. Needs to be valid systemd OnCalendar value.";
};
password-file = lib.mkOption {
2024-06-02 20:19:45 +00:00
type = lib.types.nullOr lib.types.str;
2024-06-02 20:03:51 +00:00
default = null;
2024-06-02 19:35:28 +00:00
description = "File containing the restic password.";
};
randomized-delay = lib.mkOption {
type = lib.types.int;
default = 0;
description = "Randomized delay in seconds to spread out backups.";
};
};
config = lib.mkIf cfg.enable {
systemd.services."backup-helper@" = {
2024-06-02 20:17:33 +00:00
after = [ "network-online.target" ];
2024-06-02 19:35:28 +00:00
environment = {
RESTIC_REPOSITORY = cfg.restic-repository;
} // lib.attrsets.optionalAttrs (builtins.hasAttr "password-file" cfg) {
RESTIC_PASSWORD_FILE = cfg.password-file;
};
serviceConfig = {
Type = "oneshot";
2024-06-02 21:08:30 +00:00
ExecStart = "${restic-wrapper}/bin/restic-wrapper %f";
2024-06-02 19:35:28 +00:00
};
};
systemd.timers."backup-helper@" = {
2024-06-02 20:05:10 +00:00
timerConfig = {
OnCalendar = cfg.schedule;
Persistent = true;
RandomizedDelaySec = cfg.randomized-delay;
2024-06-02 19:35:28 +00:00
};
};
2024-06-02 21:12:25 +00:00
systemd.timers.${escaped-path} = {
2024-06-02 20:45:23 +00:00
wantedBy = [ "timers.target" ];
2024-06-02 20:51:19 +00:00
overrideStrategy = "asDropin";
2024-06-02 20:44:14 +00:00
};
2024-06-02 19:35:28 +00:00
};
}