Commit de5be77

HPCesia <me@hpcesia.com>
2025-10-01 17:05:14
refactor: migrate syncthing
1 parent 4cb20af
Changed files (2)
home
modules
desktop
home/base/tui/syncthing.nix
@@ -1,6 +0,0 @@
-{...}: {
-  services.syncthing = {
-    enable = true;
-    guiAddress = "127.0.0.1:4074";
-  };
-}
modules/desktop/apps/syncthing.nix
@@ -0,0 +1,8 @@
+{
+  flake.modules.homeManager.desktop = _: {
+    services.syncthing = {
+      enable = true;
+      guiAddress = "127.0.0.1:4074";
+    };
+  };
+}