18 lines
382 B
Nix
18 lines
382 B
Nix
{ lib, ... }:
|
|
{
|
|
options.nixvim-config = {
|
|
enable = lib.mkEnableOption "Enable nixvim-config";
|
|
|
|
enable-ai = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Enable ai plugins";
|
|
};
|
|
|
|
enable-startify-cowsay = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Enable startify";
|
|
};
|
|
};
|
|
}
|