diff options
author | tzlil <tzlils@protonmail.com> | 2023-07-30 18:25:45 +0300 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-07-30 18:25:45 +0300 |
commit | 6f4af85daec2e1db5be2668d15b5f851b436a35b (patch) | |
tree | 9082bc2971d50d60f7debbb44dbf6b23bb753c52 /mixins/syncthing.nix | |
parent | f72f22b250ecf22657ffc9e6082086377031ea8a (diff) |
uhhhh
Diffstat (limited to 'mixins/syncthing.nix')
-rw-r--r-- | mixins/syncthing.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mixins/syncthing.nix b/mixins/syncthing.nix index 18b8f78..8928969 100644 --- a/mixins/syncthing.nix +++ b/mixins/syncthing.nix @@ -5,22 +5,22 @@ }: { config = { services.syncthing = { - enable = false; + enable = true; user = "tzlil"; dataDir = "/home/tzlil/sync"; configDir = "/home/tzlil/.config/syncthing"; overrideDevices = true; overrideFolders = true; - #settings = { - devices = { - "phone" = {id = "UHWVTEZ-BERNFCH-3ZXQHNE-ZRBHLU6-MBAVEHB-TKLQJM7-ZGHLJ4R-6E4SAA7";}; - }; - folders = { - "passwords" = { - path = "/home/tzlil/sync/passwords"; - devices = ["phone"]; + settings = { + devices = { + "phone".id = "UHWVTEZ-BERNFCH-3ZXQHNE-ZRBHLU6-MBAVEHB-TKLQJM7-ZGHLJ4R-6E4SAA7"; + }; + folders = { + "passwords" = { + path = "/home/tzlil/sync/passwords"; + devices = ["phone"]; + }; }; - #}; }; }; |