1
0
Fork 0

Change LanguageTool port to 8090 (Syncthing conflict)

This commit is contained in:
Aires 2024-04-22 10:42:54 -04:00
parent 429017f601
commit 17003ebcd1
2 changed files with 8 additions and 7 deletions

View file

@ -117,11 +117,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713566308, "lastModified": 1713789879,
"narHash": "sha256-7Y91t8pheIzjJveUMAPyeh5NOq5F49Nq4Hl2532QpJs=", "narHash": "sha256-4Wt3Bg6uOnvwZcECBZaFEdzlWRlGLgd8DqLL4ugLdxg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "057117a401a34259c9615ce62218aea7afdee4d3", "rev": "46833c3115e8858370880d892748f0927d8193c3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -222,11 +222,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1713537308, "lastModified": 1713714899,
"narHash": "sha256-XtTSSIB2DA6tOv+l0FhvfDMiyCmhoRbNB+0SeInZkbk=", "narHash": "sha256-+z/XjO3QJs5rLE5UOf015gdVauVRQd2vZtsFkaXBq2Y=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5c24cf2f0a12ad855f444c30b2421d044120c66f", "rev": "6143fc5eeb9c4f00163267708e26191d1e918932",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -20,8 +20,9 @@ with lib;
# Spelling and grammer checking: hosted on localhost:8081 # Spelling and grammer checking: hosted on localhost:8081
services.languagetool = { services.languagetool = {
enable = true; enable = true;
port = 8090;
public = false; public = false;
allowOrigin = "*"; allowOrigin = "*";
}; };
}; };
} }