nix-community.nixvim/wrappers/modules/shared.nix

15 lines
296 B
Nix
Raw Normal View History

{ lib, ... }:
{
options = {
enable = lib.mkEnableOption "nixvim";
meta.wrapper = {
name = lib.mkOption {
type = lib.types.str;
description = "The human-readable name of this nixvim wrapper. Used in documentation.";
internal = true;
};
};
};
}