From 66f306e1666989bc922b4f535c37d0c6b0b47dd4 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Wed, 9 Aug 2023 12:09:04 +0200 Subject: [PATCH] pinwheel: Sync `phone-gps` and `time-tracking` --- hosts/pinwheel/configuration.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/hosts/pinwheel/configuration.nix b/hosts/pinwheel/configuration.nix index 2496ded..d551f67 100644 --- a/hosts/pinwheel/configuration.nix +++ b/hosts/pinwheel/configuration.nix @@ -162,6 +162,28 @@ }; }; }; + + "phone-gps" = { + path = "/home/alex/sync/phone-gps"; + devices = [ "phone" ]; + versioning = { + type = "staggered"; + params = { + maxAge = "2592000"; # 30 days + }; + }; + }; + + "time-tracking" = { + path = "/home/alex/sync/time-tracking"; + devices = [ "phone" ]; + versioning = { + type = "staggered"; + params = { + maxAge = "2592000"; # 30 days + }; + }; + }; }; }; };