nix-community.nixvim/wrappers/modules/shared.nix
2025-01-17 10:16:09 +00:00

18 lines
334 B
Nix

{ 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;
};
};
};
imports = [
./nixpkgs.nix
];
}