Added LanguageTool Server
Some checks failed
/ Check Nix Flake (push) Failing after 35s

This commit is contained in:
Kaybee 2025-01-21 22:10:55 +01:00
parent 5c2130355f
commit 6b45ffcfa7
No known key found for this signature in database

View file

@ -36,6 +36,9 @@
# Allow KDE Connect Ports # Allow KDE Connect Ports
networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }]; networking.firewall.allowedTCPPortRanges = [{ from = 1714; to = 1764; }];
networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }]; networking.firewall.allowedUDPPortRanges = [{ from = 1714; to = 1764; }];
# Allow Minecraft Ports
#networking.firewall.allowedTCPPorts = [ 25565 19132 ];
#networking.firewall.allowedUDPPorts = [ 25565 19132 ];
# Enable Bluetooth # Enable Bluetooth
hardware.bluetooth.enable = true; # enables support for Bluetooth hardware.bluetooth.enable = true; # enables support for Bluetooth
@ -80,6 +83,12 @@
# Enable SSH-Agent # Enable SSH-Agent
programs.ssh.startAgent = true; programs.ssh.startAgent = true;
# Enable LanguageTool Server
services.languagetool = {
enable = true;
allowOrigin = "*";
};
# Enable sound with pipewire. # Enable sound with pipewire.
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;