From 0ef2490164b11b1005c72779c4813c51f80696ea Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 3 Mar 2024 19:44:16 +0000 Subject: [PATCH] Enable borg backup on atlas --- hosts/atlas/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/atlas/default.nix b/hosts/atlas/default.nix index a51fb45..a6bff50 100644 --- a/hosts/atlas/default.nix +++ b/hosts/atlas/default.nix @@ -42,6 +42,15 @@ gpg.enable = true; pass.enable = true; }; + services = { + borgmatic = { + enable = true; + directories = [ + "/home/jordan/Documents" + ]; + repoPath = "ssh://uzu2y5b1@uzu2y5b1.repo.borgbase.com/./repo"; + }; + }; shell = { git.enable = true; zsh.enable = true;