This commit is contained in:
KoenDR06 2025-02-11 17:31:06 +01:00
parent d6bdbe514d
commit dd65a32a60
9 changed files with 115 additions and 68 deletions

View file

@ -0,0 +1,21 @@
{
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 {
};
}