about summary refs log tree commit diff
path: root/nixos/tests/wine.nix
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-11-04 15:20:06 -0700
committerBernardo Meurer <bernardo@meurer.org>2021-11-04 15:20:06 -0700
commit98749ffa5fbfcf733ef1d82f9e75791b644f233a (patch)
tree5d8d32cf0bc74f931913b0f8ca3f2188a0e2c9f7 /nixos/tests/wine.nix
parentb8ab5de781d8dbabee202891ea2cbbe9eef00b87 (diff)
nixos/tests/wine: syntax fix
Diffstat (limited to 'nixos/tests/wine.nix')
-rw-r--r--nixos/tests/wine.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/nixos/tests/wine.nix b/nixos/tests/wine.nix
index 30d417ce9faa9..c46c7d338b2e2 100644
--- a/nixos/tests/wine.nix
+++ b/nixos/tests/wine.nix
@@ -1,7 +1,6 @@
-{ system ? builtins.currentSystem, pkgs ? import ../.. {
-  inherit system;
-  config = { };
-}, }:
+{ system ? builtins.currentSystem
+, pkgs ? import ../.. { inherit system; config = { }; }
+}:
 
 let
   inherit (pkgs.lib) concatMapStrings listToAttrs;