mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
12 lines
202 B
Nix
12 lines
202 B
Nix
{lib}: let
|
|
inherit (lib.options) mkOption;
|
|
inherit (lib.types) bool;
|
|
in {
|
|
mkBool = value: description:
|
|
mkOption {
|
|
type = bool;
|
|
default = value;
|
|
inherit description;
|
|
};
|
|
}
|