search module: add missing types

Changed files
+3
nixos
modules
services
networking
+3
nixos/modules/services/networking/searx.nix
···
services.searx = {
enable = mkOption {
default = false;
description = "
Whether to enable the Searx server. See https://github.com/asciimoo/searx
···
};
configFile = mkOption {
default = "";
description = "
The path of the Searx server configuration file. If no file
···
};
package = mkOption {
default = pkgs.pythonPackages.searx;
description = "searx package to use.";
};
···
services.searx = {
enable = mkOption {
+
type = types.bool;
default = false;
description = "
Whether to enable the Searx server. See https://github.com/asciimoo/searx
···
};
configFile = mkOption {
+
type = types.path;
default = "";
description = "
The path of the Searx server configuration file. If no file
···
};
package = mkOption {
+
type = types.package;
default = pkgs.pythonPackages.searx;
description = "searx package to use.";
};