nixvim-config/module.nix
2025-02-16 14:22:27 -08:00

12 lines
243 B
Nix

{ lib, ... }:
{
options.nixvim-config = {
enable = lib.mkEnableOption "Enable nixvim-config";
enable-startify = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable startify";
};
};
}