mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-14 05:55:59 +01:00
11 lines
202 B
Nix
11 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;
|
|
};
|
|
}
|