> instead. AFAIR, it is illegal to have a.b = ...; a.c = ...; in nix.
Maybe this used to be the case. My Nix can parse it:
{ a.b = "ath"; a.c = "foobar"; }
yields
{ a = { b = "ath"; c = "foobar"; }; }
I'm too lazy too lookup when the change (if so) took place.
Marc Weber