nix-config/overhaul/modules/terminal/neovim.nix
2025-02-11 17:31:06 +01:00

21 lines
308 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.terminal.neovim;
in {
options = {
horseman.terminal.neovim = {
enable = mkEnableOption "Neovim options";
};
};
config = mkIf cfg.enable {
};
}