mirror of
https://github.com/sstent/vmimages.git
synced 2026-01-25 22:51:49 +00:00
17 lines
328 B
Nix
17 lines
328 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkOption types;
|
|
in rec {
|
|
mkOpt = type: default:
|
|
mkOption {inherit type default;};
|
|
|
|
mkOpt' = type: default: description:
|
|
mkOption {inherit type default description;};
|
|
|
|
mkBoolOpt = default:
|
|
mkOption {
|
|
inherit default;
|
|
type = types.bool;
|
|
example = true;
|
|
};
|
|
}
|