summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/module-argument-default.nix
blob: c43713637b403eca697663119700c9968c72aa11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  a ? false,
  lib,
  ...
}:
{
  options = {
    result = lib.mkOption { };
  };
  config = {
    _module.args.a = true;
    result = a;
  };
}