nix-in-node/samples/attrsets.nix
2022-02-02 10:39:55 +01:00

7 lines
59 B
Nix

{
a = 3;
b = a;
c.d = { e = 5; };
${c} = { f = 4; };
}