nixos-configs/modules/services/languagetool.nix
2023-07-10 21:41:01 +02:00

16 lines
299 B
Nix

{ config, lib, pkgs, ... }:
with lib;
with lib.my;
let cfg = config.modules.services.languagetool;
in {
options.modules.services.languagetool = { enable = mkBoolOpt false; };
config = mkIf cfg.enable {
services.languagetool = {
enable = true;
allowOrigin = "*";
};
};
}