neovim-flake/lib/config.nix

12 lines
202 B
Nix
Raw Normal View History

{lib}: let
inherit (lib.options) mkOption;
inherit (lib.types) bool;
in {
mkBool = value: description:
mkOption {
type = bool;
default = value;
inherit description;
};
}