summary refs log tree commit diff
path: root/nixos/modules/services/search
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:18:46 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:18:46 +0200
commit6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc (patch)
tree7ab1646f34c7437c6cb41442a398163e00cb98bb /nixos/modules/services/search
parentc63bc92d4c040fb7999185e1948b29c3c84bacf9 (diff)
downloadnixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar
nixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.gz
nixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.bz2
nixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.lz
nixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.xz
nixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.tar.zst
nixlib-6e6a96d42cf56cfcd042bbeab89e37f442f0cfcc.zip
Some more type cleanup
Diffstat (limited to 'nixos/modules/services/search')
-rw-r--r--nixos/modules/services/search/elasticsearch.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix
index f6a3fad6c5db..64620bf16041 100644
--- a/nixos/modules/services/search/elasticsearch.nix
+++ b/nixos/modules/services/search/elasticsearch.nix
@@ -102,7 +102,7 @@ in {
     extraCmdLineOptions = mkOption {
       description = "Extra command line options for the elasticsearch launcher.";
       default = [];
-      type = types.listOf types.string;
+      type = types.listOf types.str;
       example = [ "-Djava.net.preferIPv4Stack=true" ];
     };