nixos-configs/modules/services/languagetool.nix

17 lines
299 B
Nix
Raw Normal View History

2023-07-10 21:40:21 +02:00
{ 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 = "*";
};
};
}