about summary refs log tree commit diff
path: root/tests/lang/parse-okay-mixed-nested-attrs-3.nix
diff options
context:
space:
mode:
authorFélix Baylac-Jacqué <felix@alternativebit.fr>2018-05-01T12·42+0200
committerFélix Baylac-Jacqué <felix@alternativebit.fr>2018-05-01T12·42+0200
commitb2f3a7411a509d5df5a189066870a0f02b6523a9 (patch)
treec75555afb742c7da8d8e4858b4b8378fe3d87193 /tests/lang/parse-okay-mixed-nested-attrs-3.nix
parent00584bb0915ee21fb01e9390a901161bdd988197 (diff)
nix-lang: Add deep nested mixed attrs test case.
Diffstat (limited to 'tests/lang/parse-okay-mixed-nested-attrs-3.nix')
-rw-r--r--tests/lang/parse-okay-mixed-nested-attrs-3.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-mixed-nested-attrs-3.nix b/tests/lang/parse-okay-mixed-nested-attrs-3.nix
new file mode 100644
index 000000000000..45a33e480373
--- /dev/null
+++ b/tests/lang/parse-okay-mixed-nested-attrs-3.nix
@@ -0,0 +1,7 @@
+{
+    services.ssh.enable = true;
+    services.ssh = { port = 123; };
+    services = {
+        httpd.enable = true;
+    };
+}