diff --git a/22.nix b/22.nix new file mode 100644 index 0000000..c6dd310 --- /dev/null +++ b/22.nix @@ -0,0 +1,12 @@ +let + myImport = import {}; + x = 123; + as = { a = "foo"; b = "bar"; }; + +in with as; { + inherit x; #example + #fix line below: we want a and b in this scope + inherit a b; + #also fix this line + z = myImport.lib.isBool true; +} \ No newline at end of file