From 0c455baebd44b97a338e28167208470ba02558a9 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sat, 16 Aug 2025 19:04:10 -0700 Subject: [PATCH] Add languagetool --- machines/storage/s0/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/machines/storage/s0/default.nix b/machines/storage/s0/default.nix index 3036cd6..0d9da34 100644 --- a/machines/storage/s0/default.nix +++ b/machines/storage/s0/default.nix @@ -254,6 +254,7 @@ (mkVirtualHost "linkwarden.s0.neet.dev" "http://localhost:${toString config.services.linkwarden.port}") (mkVirtualHost "memos.s0.neet.dev" "http://localhost:${toString config.services.memos.port}") (mkVirtualHost "outline.s0.neet.dev" "http://localhost:${toString config.services.outline.port}") + (mkVirtualHost "languagetool.s0.neet.dev" "http://localhost:${toString config.services.languagetool.port}") ]; tailscaleAuth = { @@ -278,6 +279,7 @@ "linkwarden.s0.neet.dev" # "memos.s0.neet.dev" # messes up memos /auth route # "outline.s0.neet.dev" # messes up outline /auth route + "languagetool.s0.neet.dev" ]; expectedTailnet = "koi-bebop.ts.net"; }; @@ -374,5 +376,10 @@ owner = config.services.outline.user; }; + services.languagetool = { + enable = true; + port = 60613; + }; + boot.binfmt.emulatedSystems = [ "aarch64-linux" "armv7l-linux" ]; }