From 4e17f32353f4cf58f417fed91ff2f0e67224449e Mon Sep 17 00:00:00 2001 From: Soispha Date: Wed, 12 Apr 2023 10:36:08 +0200 Subject: Feat(system/services/backup): Add 'snap-sync-forced'[https://github.com/qubidt/snap-sync-forked] is not longer developed (as of the commit date) and thus some changes are necessary to get it working with nixos. Alternatives (although both similarly discontinued): - the original snap-sync [https://github.com/qubidt/snap-sync] -> Is effectively snap-sync-forced but without 50+ commits - 'dsnap-sync' [https://github.com/rzerres/dsnap-sync] -> Was forked long ago, now abandoned. Is rewritten in dash with lots of extra features, but sort of breaks even worse on nixos. --- system/services/backup/default.nix | 67 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 system/services/backup/default.nix (limited to 'system/services/backup/default.nix') diff --git a/system/services/backup/default.nix b/system/services/backup/default.nix new file mode 100644 index 00000000..49cf07fb --- /dev/null +++ b/system/services/backup/default.nix @@ -0,0 +1,67 @@ +# vim: ts=2 +{ + lib, + sysLib, + pkgs, + config, + ... +}: let + snap-sync-forked = sysLib.makeShellScriptWithLibrary { + name = "snap-sync-forked"; + script = ./snap-sync-forked; + dependencies = with pkgs; [ + bash + btrfs-progs + coreutils + gawk + gnugrep + snapper + util-linux + + # optional: + libnotify + openssh + pv + rsync + sudo + ]; + }; + backup-script = pkgs.writeShellScriptBin "backsnap" '' + ${pkgs.util-linux}/bin/mount --mkdir "/dev/disk/by-uuid/${cfg.backupDiskUuid}" "/run/media/${cfg.backupDiskUuid}"; + ${snap-sync-forked}/bin/snap-sync-forked --UUID "${cfg.backupDiskUuid}" --noconfirm; + ${pkgs.util-linux}/bin/umount "/run/media/${cfg.backupDiskUuid}"; + ''; + cfg = config.soispha.fs.backup; +in { + options.soispha.fs.backup = { + enable = lib.mkEnableOption (lib.mdDoc "backups with snap-sync"); + backupDiskUuid = lib.mkOption { + type = lib.types.str; + example = lib.literalExpression "d1d20ae7-3d8a-44da-86da-677dbbb10c89"; + description = lib.mdDoc "The UUID of the backup disk"; + }; + }; + config = lib.mkIf cfg.enable { + systemd = { + services.backup = { + unitConfig = { + Description = "Backup the last snapshots of the persitent-storage subvolume."; + }; + serviceConfig = { + Type = "oneshot"; + ExecStart = "${backup-script}/bin/backsnap"; + }; + }; + timers.backup = { + wantedBy = ["timers.target"]; + wants = ["backup.service"]; + unitConfig = { + Description = "Backup 15min after boot"; + }; + timerConfig = { + OnBootSec = "15min"; + }; + }; + }; + }; +} -- cgit 1.4.1