diff options
Diffstat (limited to 'modules/user/syncthing.nix')
| -rw-r--r-- | modules/user/syncthing.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/user/syncthing.nix b/modules/user/syncthing.nix new file mode 100644 index 0000000..e719672 --- /dev/null +++ b/modules/user/syncthing.nix @@ -0,0 +1,18 @@ +{ config, ... }: +{ + services.syncthing.settings = { + devices = { + angel = { + addresses = [ "tcp://10.6.6.2:22000" ]; + id = "DN6TIYA-X4BUO4M-4VQKZFO-NP2QYNY-NRNXE4S-QT6WTNK-FW4ZASY-2GJ3QAZ"; + }; + }; + + folders = { + "/home/rosa/Documents/Security" = { + devices = [ "angel" ]; + id = "passwords_and_such"; + }; + }; + }; +} |
