nixvim-config/module.nix

13 lines
243 B
Nix
Raw Normal View History

{ lib, ... }:
{
options.nixvim-config = {
enable = lib.mkEnableOption "Enable nixvim-config";
2025-02-16 14:22:27 -08:00
enable-startify = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable startify";
};
};
}