mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-31 23:46:48 +02:00
15 lines
328 B
Nix
15 lines
328 B
Nix
{ 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";
|
|
});
|
|
}
|