about summary refs log tree commit diff
path: root/nixpkgs/lib/tests/modules/module-argument-default.nix
blob: 8dbb783e2df1ff193e3031de7e96a50b17f586e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ a ? false, lib, ... }: {
  options = {
    result = lib.mkOption {};
  };
  config = {
    _module.args.a = true;
    result = a;
  };
}