Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11-beta 9 lines 139 B view raw
1{ a ? false, lib, ... }: { 2 options = { 3 result = lib.mkOption {}; 4 }; 5 config = { 6 _module.args.a = true; 7 result = a; 8 }; 9}