15 lines
210 B
Nix
15 lines
210 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
lib.mkIf (lib.elem "languagetool" config.machine.services) {
|
|
services.languagetool = {
|
|
enable = true;
|
|
allowOrigin = "*";
|
|
jvmOptions = [
|
|
"-Xmx512m"
|
|
];
|
|
};
|
|
}
|