mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
19 lines
171 B
Nix
19 lines
171 B
Nix
let {
|
|
|
|
a = "xyzzy";
|
|
|
|
as = {
|
|
a = "foo";
|
|
b = "bar";
|
|
};
|
|
|
|
bs = {
|
|
a = "bar";
|
|
};
|
|
|
|
x = with as; a + b;
|
|
|
|
y = with as; with bs; a + b;
|
|
|
|
body = x + y;
|
|
}
|