opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / module-argument-default.nix
blob8dbb783e2df1ff193e3031de7e96a50b17f586e6
1 { a ? false, lib, ... }: {
2   options = {
3     result = lib.mkOption {};
4   };
5   config = {
6     _module.args.a = true;
7     result = a;
8   };