lib/*: editorconfig fixes

zowoq c8500de4 b3d71cd6

Changed files
+1 -1
lib
+1 -1
lib/tests/modules/define-option-dependently.nix
···
# Always defined, but the value depends on the presence of an option.
config = {
value = if options ? enable then 360 else 7;
-
}
+
}
# Only define if possible.
// lib.optionalAttrs (options ? enable) {
enable = true;