summary refs log tree commit diff
path: root/lib/tests/modules
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-07-31 15:07:33 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-07-31 15:07:33 +1000
commitc8500de47b5062a59e2f15712dfe5c7315ecfc32 (patch)
tree29b176a47b10f1a985524540721544d99432a6c2 /lib/tests/modules
parentb3d71cd63dc6ee60894d8d061b9551b57cb5cd33 (diff)
downloadnixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.tar
nixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.tar.gz
nixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.tar.bz2
nixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.tar.lz
nixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.tar.xz
nixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.tar.zst
nixpkgs-c8500de47b5062a59e2f15712dfe5c7315ecfc32.zip
lib/*: editorconfig fixes
Diffstat (limited to 'lib/tests/modules')
-rw-r--r--lib/tests/modules/define-option-dependently.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tests/modules/define-option-dependently.nix b/lib/tests/modules/define-option-dependently.nix
index 6abce29366a..ad85f99a919 100644
--- a/lib/tests/modules/define-option-dependently.nix
+++ b/lib/tests/modules/define-option-dependently.nix
@@ -7,7 +7,7 @@
   # 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;