aboutsummaryrefslogtreecommitdiffstats
path: root/system/services/backup/default.nix
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-12 10:36:08 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:30:24 +0200
commit4e17f32353f4cf58f417fed91ff2f0e67224449e (patch)
tree8cfa5f6b99d0ede2e08dc4415251ceaf0f32208c /system/services/backup/default.nix
parentFix(hm/pkgs): Change anki to anki-bin (diff)
downloadnixos-config-4e17f32353f4cf58f417fed91ff2f0e67224449e.zip
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.
Diffstat (limited to 'system/services/backup/default.nix')
-rw-r--r--system/services/backup/default.nix67
1 files changed, 67 insertions, 0 deletions
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";
+ };
+ };
+ };
+ };
+}