nix-in-node/samples/attrsets.nix

9 lines
153 B
Nix
Raw Normal View History

2022-05-11 23:25:17 +02:00
rec {
a = "hi";
2022-02-02 10:39:55 +01:00
b = a;
c.d = { e = 5; };
2022-05-11 23:25:17 +02:00
"${b}s" = { f = 4; };
# FIXME: The below currently breaks desugar-attrsets
# ${c}.d = { g = 6; };
2022-08-11 03:49:13 +02:00
}.his.f