5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
9 lines
139 B
Nix
9 lines
139 B
Nix
{ a ? false, lib, ... }: {
|
|
options = {
|
|
result = lib.mkOption {};
|
|
};
|
|
config = {
|
|
_module.args.a = true;
|
|
result = a;
|
|
};
|
|
}
|