aboutsummaryrefslogtreecommitdiff
path: root/modules/user/syncthing.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-05-26 14:28:53 -0400
committerRosa <rosaontheweb@proton.me>2026-05-26 14:28:53 -0400
commit5497fa685466c73cbcffd3e77056752a8d818e3e (patch)
treec60e3935049a4824868d3718f857010cd106a6b0 /modules/user/syncthing.nix
parent36439f34e12d4fd2151bb08ed3197489cea5c51c (diff)
syncing my things
Diffstat (limited to 'modules/user/syncthing.nix')
-rw-r--r--modules/user/syncthing.nix18
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";
+ };
+ };
+ };
+}