mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
13 lines
105 B
Nix
13 lines
105 B
Nix
let {
|
|
|
|
a = "xyzzy";
|
|
|
|
as = {
|
|
a = "foo";
|
|
b = "bar";
|
|
};
|
|
|
|
x = with as; a + b;
|
|
|
|
body = x;
|
|
}
|