bloop: allow specifying extra cli options
This commit is contained in:
parent
d6b6015d34
commit
17c2f79e39
@ -9,6 +9,20 @@ let
|
|||||||
in {
|
in {
|
||||||
|
|
||||||
options.services.bloop = {
|
options.services.bloop = {
|
||||||
|
extraOptions = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ ];
|
||||||
|
example = [
|
||||||
|
"-J-Xmx2G"
|
||||||
|
"-J-XX:MaxInlineLevel=20"
|
||||||
|
"-J-XX:+UseParallelGC"
|
||||||
|
];
|
||||||
|
description = ''
|
||||||
|
Specifies additional command line argument to pass to bloop
|
||||||
|
java process.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
install = mkOption {
|
install = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user