mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
12 lines
179 B
Nix
12 lines
179 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption;
|
|
in {
|
|
options.vim.dashboard.dashboard-nvim = {
|
|
enable = mkEnableOption "dashboard via dashboard.nvim";
|
|
};
|
|
}
|