fix: remove unecessary neovim module

This commit is contained in:
Guz
2024-12-09 09:25:48 -03:00
parent 8a21a9073d
commit fb8b2ca896
2 changed files with 0 additions and 33 deletions

View File

@@ -2,7 +2,6 @@
imports = [
./hyprland.nix
./krita
./neovim.nix
./prismlauncher.nix
./wezterm.nix
];

View File

@@ -1,32 +0,0 @@
{
config,
lib,
pkgs,
...
}: let
cfg = config.programs.neovim;
in {
imports = [];
config = with lib;
mkIf cfg.enable {
programs.neovim = {
viAlias = true;
vimAlias = true;
withNodeJs = true;
defaultEditor = true;
};
home.sessionVariables = mkIf cfg.defaultEditor {
EDITOR = "nvim";
};
home.packages = with pkgs; [
git
lazygit
gcc
wget
alejandra
stylua
];
};
}