1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-12 21:53:15 +01:00
neovim-flake/modules/dashboard/dashboard-nvim/dashboard-nvim.nix

11 lines
179 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkEnableOption;
in {
options.vim.dashboard.dashboard-nvim = {
enable = mkEnableOption "dashboard via dashboard.nvim";
};
}