From 17003ebcd183f74ba2de17735b21363b638807f7 Mon Sep 17 00:00:00 2001 From: Andre Date: Mon, 22 Apr 2024 10:42:54 -0400 Subject: [PATCH] Change LanguageTool port to 8090 (Syncthing conflict) --- flake.lock | 12 ++++++------ modules/apps/office.nix | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 2991669..2956209 100644 --- a/flake.lock +++ b/flake.lock @@ -117,11 +117,11 @@ ] }, "locked": { - "lastModified": 1713566308, - "narHash": "sha256-7Y91t8pheIzjJveUMAPyeh5NOq5F49Nq4Hl2532QpJs=", + "lastModified": 1713789879, + "narHash": "sha256-4Wt3Bg6uOnvwZcECBZaFEdzlWRlGLgd8DqLL4ugLdxg=", "owner": "nix-community", "repo": "home-manager", - "rev": "057117a401a34259c9615ce62218aea7afdee4d3", + "rev": "46833c3115e8858370880d892748f0927d8193c3", "type": "github" }, "original": { @@ -222,11 +222,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1713537308, - "narHash": "sha256-XtTSSIB2DA6tOv+l0FhvfDMiyCmhoRbNB+0SeInZkbk=", + "lastModified": 1713714899, + "narHash": "sha256-+z/XjO3QJs5rLE5UOf015gdVauVRQd2vZtsFkaXBq2Y=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5c24cf2f0a12ad855f444c30b2421d044120c66f", + "rev": "6143fc5eeb9c4f00163267708e26191d1e918932", "type": "github" }, "original": { diff --git a/modules/apps/office.nix b/modules/apps/office.nix index 069906c..d646d44 100644 --- a/modules/apps/office.nix +++ b/modules/apps/office.nix @@ -20,8 +20,9 @@ with lib; # Spelling and grammer checking: hosted on localhost:8081 services.languagetool = { enable = true; + port = 8090; public = false; allowOrigin = "*"; }; }; -} \ No newline at end of file +}