We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9033e8 + 3e1f7ca commit 1df15fcCopy full SHA for 1df15fc
1 file changed
nix/module-server.nix
@@ -55,6 +55,7 @@ let
55
};
56
full-text-search = {
57
enabled = false;
58
+ backend = "solr";
59
solr = {
60
url = "http://localhost:8983/solr/docspell";
61
commit-within = 1000;
@@ -545,10 +546,13 @@ in {
545
546
The full-text search feature can be disabled. It requires an
547
additional index server which needs additional memory and disk
548
space. It can be enabled later any time.
-
549
- Currently the SOLR search platform is supported.
550
'';
551
+ backend = mkOption {
552
+ type = types.str;
553
+ default = defaults.full-text-search.backend;
554
+ description = "The backend to use, either solr or postgresql";
555
+ };
556
solr = mkOption {
557
type = types.submodule({
558
options = {
0 commit comments