1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
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
];
}