mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-02 17:15:55 +00:00
8 lines
147 B
Nix
8 lines
147 B
Nix
{lib}: {
|
|
mkBool = value: description:
|
|
lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = value;
|
|
inherit description;
|
|
};
|
|
}
|