Skip to content

Commit 452eaed

Browse files
default enableSeparateDataOutput to true
1 parent 82bc945 commit 452eaed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/plan.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ let
155155

156156
enableSeparateDataOutput = mkOption {
157157
type = bool;
158-
default = (def.enableSeparateDataOutput or false);
158+
default = if def ? enableSeparateDataOutput
159+
then def.enableSeparateDataOutput
160+
else true;
159161
};
160162

161163
enableProfiling = mkOption {

0 commit comments

Comments
 (0)