mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
15 lines
146 B
Nix
15 lines
146 B
Nix
![]() |
{
|
||
|
a ? false,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
options = {
|
||
|
result = lib.mkOption { };
|
||
|
};
|
||
|
config = {
|
||
|
_module.args.a = true;
|
||
|
result = a;
|
||
|
};
|
||
|
}
|