summary refs log blame commit diff
path: root/lib/kernel.nix
blob: bfadf148be2565a2d4d8c9b56fef41c296005136 (plain) (tree)
1
2
3
4
5
6
7
8
9
        

         
 
 
 


                                                                                    
 



                                    
 
 
{ lib }:

with lib;
{


  # Keeping these around in case we decide to change this horrible implementation :)
  option = x:
      x // { optional = true; };

  yes      = { tristate    = "y"; };
  no       = { tristate    = "n"; };
  module   = { tristate    = "m"; };
  freeform = x: { freeform = x; };

}