2018-10-03 03:49:50 -06:00
|
|
|
{ lib }:
|
2016-01-05 07:22:43 -07:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
rec {
|
|
|
|
|
|
|
|
|
2018-10-03 03:49:50 -06:00
|
|
|
# Keeping these around in case we decide to change this horrible implementation :)
|
|
|
|
option = x:
|
|
|
|
x // { optional = true; };
|
2016-01-05 07:22:43 -07:00
|
|
|
|
2018-10-03 03:49:50 -06:00
|
|
|
yes = { tristate = "y"; };
|
|
|
|
no = { tristate = "n"; };
|
|
|
|
module = { tristate = "m"; };
|
|
|
|
freeform = x: { freeform = x; };
|
2016-01-05 07:22:43 -07:00
|
|
|
|
|
|
|
}
|