Skip to content

Commit 06cabca

Browse files
authored
Use or
1 parent 452eaed commit 06cabca

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

modules/plan.nix

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

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

163161
enableProfiling = mkOption {

0 commit comments

Comments
 (0)