From 17e059c203224fcebfca316e4d6a24f47581632a Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 20 Feb 2023 20:10:35 -0600 Subject: [PATCH] Remove syncthing --- modules-linux/automatic/default.nix | 1 - modules-linux/automatic/syncthing.nix | 46 --------------------------- 2 files changed, 47 deletions(-) delete mode 100644 modules-linux/automatic/syncthing.nix diff --git a/modules-linux/automatic/default.nix b/modules-linux/automatic/default.nix index f20fb29..8b667f9 100644 --- a/modules-linux/automatic/default.nix +++ b/modules-linux/automatic/default.nix @@ -2,7 +2,6 @@ { imports = [ - ./syncthing.nix ./users.nix ]; } diff --git a/modules-linux/automatic/syncthing.nix b/modules-linux/automatic/syncthing.nix deleted file mode 100644 index 1778dba..0000000 --- a/modules-linux/automatic/syncthing.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ ... }: - -let - syncs = [ - "nas" - "dns" - "linode" - ]; -in -{ - services.syncthing = { - enable = false; - user = "greg"; - group = "users"; - dataDir = "/home/greg/sync"; - devices = { - nas = { - addresses = [ - "tcp://nas.thehellings.lan:22000" - "tcp://chronicles.greg-hellings.gmail.com.beta.tailscale.net:22000" - ]; - id = "74JUTZG-77EPGO3-FEYCL2P-CHDWP5G-6EXWZVB-XTAH6O5-TUXCVY2-QNRHSQ4"; - }; - dns = { - addresses = [ - "tcp://dns.thehellings.lan:22000" - "tcp://2maccabees.greg-hellings.gmail.com.beta.tailscale.net:22000" - ]; - id = "C4XJCH7-3ZNW6XZ-R5DB2EU-OEGVVT2-WPHQAG7-UDWER36-6NO5KZR-4MN5VAK"; - }; - linode = { - addresses = [ - "tcp://linode.thehellings.com:22000" - ]; - id = "ROZPUG5-G4IAXYA-JNRQXRD-5PFU2BQ-WVJTOGZ-DFMGJ5E-Q4IGXCJ-JHSNDQ6"; - }; - }; - folders = { - "mkrvy-tc6x9" = { - path = "/home/greg/drive"; - enable = true; - devices = syncs; - }; - }; - }; -}