diff options
Diffstat (limited to 'third_party/nix/src/tests/lang/parse-okay-mixed-nested-attrs-3.nix')
-rw-r--r-- | third_party/nix/src/tests/lang/parse-okay-mixed-nested-attrs-3.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/third_party/nix/src/tests/lang/parse-okay-mixed-nested-attrs-3.nix b/third_party/nix/src/tests/lang/parse-okay-mixed-nested-attrs-3.nix new file mode 100644 index 000000000000..45a33e480373 --- /dev/null +++ b/third_party/nix/src/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; + }; +} |