aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/ba
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
commitc52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c (patch)
treee8b947710b467b32740598ff574982097836f66c /modules/by-name/ba
parentchore(pkgs/yt): 1.2.1 -> 1.3.0 (diff)
downloadnixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.zip
refactor(modules): Move all system modules to `by-name`
From now on all modules should be added to the new `by-name` directory. This should help remove the (superficial and utterly useless) distinction between `home-manager` and `NixOS` modules.
Diffstat (limited to 'modules/by-name/ba')
-rw-r--r--modules/by-name/ba/backup/module.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/modules/by-name/ba/backup/module.nix b/modules/by-name/ba/backup/module.nix
new file mode 100644
index 00000000..92700bf2
--- /dev/null
+++ b/modules/by-name/ba/backup/module.nix
@@ -0,0 +1,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";
+ };
+ };
+ };
+ };
+}