From 9b8f9a4bf5e13efe49ec101f127d0df3d7bb3cf3 Mon Sep 17 00:00:00 2001 From: adikro Date: Sat, 27 Jun 2026 02:41:27 +0200 Subject: revamped sanoid, syncoid and nfs --- os/srv/restic.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 os/srv/restic.nix (limited to 'os/srv/restic.nix') diff --git a/os/srv/restic.nix b/os/srv/restic.nix new file mode 100644 index 0000000..fb2bd19 --- /dev/null +++ b/os/srv/restic.nix @@ -0,0 +1,12 @@ +{ config, lib, ... }: +let + cfg = config.os.srv.restic; +in +{ + options.os.srv.restic.enable = lib.mkEnableOption "enables restic backups"; + + config = lib.mkIf cfg.enable { + assertions = [ + ]; + }; +} -- cgit v1.3