mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
18 lines
334 B
Nix
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
|
|
];
|
|
}
|