Move the neovim config to the system level

This commit is contained in:
SebastianStork 2024-04-29 22:13:37 +02:00
parent 926d5bdc51
commit c7f838feae
4 changed files with 7 additions and 24 deletions

View file

@ -5,7 +5,6 @@
./shell
./ssh-client.nix
./git.nix
./neovim.nix
./kitty.nix
./equalizer
./sops.nix

View file

@ -1,17 +0,0 @@
{
config,
lib,
...
}: {
options.myConfig.neovim.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.neovim.enable {
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
};
};
}