backup-helper/backup.nix

87 lines
2.6 KiB
Nix
Raw Normal View History

2024-10-03 19:57:19 +00:00
{
lib,
config,
pkgs,
...
}:
2024-06-02 19:35:28 +00:00
let
cfg = config.backup-helper;
restic-wrapper = pkgs.writeShellApplication {
name = "restic-wrapper";
runtimeInputs = [
pkgs.restic
];
2025-01-27 21:34:13 +00:00
text = (builtins.readFile ./backup.sh);
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.";
};
2025-01-27 21:34:13 +00:00
backup-commands = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
description = "Backup the stdout of commands. Format strings like key:command";
};
2024-06-02 19:35:28 +00:00
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.";
};
2024-10-03 23:16:39 +00:00
forget = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Run restic forget after backup.";
};
2024-06-02 19:35:28 +00:00
};
config = lib.mkIf cfg.enable {
2024-06-02 21:41:37 +00:00
systemd.services."backup-helper" = {
2024-10-03 19:57:19 +00:00
wants = [ "network-online.target" ];
2024-06-02 20:17:33 +00:00
after = [ "network-online.target" ];
2024-10-03 19:57:19 +00:00
environment =
{
RESTIC_REPOSITORY = cfg.restic-repository;
BACKUP_HELPER_DIRS = lib.strings.concatStringsSep "," cfg.backup-dirs;
2024-10-03 23:16:39 +00:00
BACKUP_FORGET = if cfg.forget then "1" else "0";
2024-10-03 19:57:19 +00:00
}
// lib.attrsets.optionalAttrs (builtins.hasAttr "password-file" cfg) {
RESTIC_PASSWORD_FILE = cfg.password-file;
2025-01-27 21:34:13 +00:00
}
// lib.attrsets.optionalAttrs (cfg.backup-commands != [ ]) {
BACKUP_HELPER_COMMANDS = lib.strings.concatStringsSep ";" cfg.backup-commands;
2024-10-03 19:57:19 +00:00
};
2024-06-02 19:35:28 +00:00
serviceConfig = {
Type = "oneshot";
2024-06-02 21:41:37 +00:00
ExecStart = "${restic-wrapper}/bin/restic-wrapper";
2024-06-02 19:35:28 +00:00
};
};
2024-06-02 21:41:37 +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 20:45:23 +00:00
wantedBy = [ "timers.target" ];
2024-06-02 20:44:14 +00:00
};
2024-06-02 19:35:28 +00:00
};
}