diff options
author | Ben Sima (aider) <ben@bsima.me> | 2025-03-21 23:54:34 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-04-11 12:30:29 -0400 |
commit | 42fc10baefb10071607384a7131c1c6cb076e505 (patch) | |
tree | b0ff60c7c7e016c8c92c8fa068f071943c435d22 /Omni/Dev/Lithium/Configuration.nix | |
parent | a95231a35106193a68d29a48e5dc23999232af9f (diff) |
Move Syncthing configuration to dedicated module
Moved Syncthing configuration from Lithium's configuration file to a
dedicated module in Cloud directory. This change improves organization
by placing the service with other cloud-related configurations.
The new module includes comprehensive Syncthing setup with proper user
configuration, firewall rules, and default settings. It's now imported
in Cloud.nix to make it available to the cloud infrastructure.
Diffstat (limited to 'Omni/Dev/Lithium/Configuration.nix')
-rw-r--r-- | Omni/Dev/Lithium/Configuration.nix | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Omni/Dev/Lithium/Configuration.nix b/Omni/Dev/Lithium/Configuration.nix index 5df3fa5..82d23d1 100644 --- a/Omni/Dev/Lithium/Configuration.nix +++ b/Omni/Dev/Lithium/Configuration.nix @@ -49,11 +49,6 @@ in { services.k3s.enable = false; services.k3s.role = "server"; - services.syncthing.enable = true; - services.syncthing.guiAddress = "127.0.0.1:${toString ports.syncthing-gui}"; - services.syncthing.openDefaultPorts = true; - services.syncthing.systemService = true; - services.tor.enable = true; services.tor.client.enable = true; services.tor.relay.role = "bridge"; |