/ lib / option.nix
option.nix
 1  _: _: super: let
 2    inherit (super) mkOption;
 3  in {
 4    mkConst = value: mkOption {
 5      default  = value;
 6      readOnly = true;
 7    };
 8  
 9    mkValue = default: mkOption {
10      inherit default;
11    };
12  }