core/lib/tests/modules/define-freeform-keywords-shorthand.nix

16 lines
328 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ config, ... }: {
class = { "just" = "data"; };
a = "one";
b = "two";
meta = "meta";
_module.args.result =
let r = builtins.removeAttrs config [ "_module" ];
in builtins.trace (builtins.deepSeq r r) (r == {
a = "one";
b = "two";
class = { "just" = "data"; };
meta = "meta";
});
}