Files
2025-12-04 23:22:21 +00:00

19 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
];
}