Don't need the nvim nix file any more, too small

This commit is contained in:
Dustin Swan 2026-04-12 16:53:34 -06:00
parent e371b17b7d
commit 9c28dc3048
No known key found for this signature in database
GPG key ID: 30D46587E2100467
2 changed files with 11 additions and 25 deletions

View file

@ -14,10 +14,6 @@ in
settings.experimental-features = [ "nix-command" "flakes" ];
};
imports = [
./home-nvim.nix
];
home.packages = with pkgs; [
supabase-cli
bitwarden-cli
@ -57,6 +53,10 @@ in
stylelint
js-beautify
intelephense
vscode-langservers-extracted
elixir-ls
lua-language-server
tree-sitter
dict
ispell
aspell
@ -270,4 +270,11 @@ in
enable = true;
keys = [ "id_rsa" "id_rsa_mr" "2B3A6377" ];
};
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
};
xdg.configFile."nvim/init.lua".source = ./init.lua;
}

View file

@ -1,21 +0,0 @@
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
};
xdg.configFile."nvim/init.lua".source = ./init.lua;
home.packages = with pkgs; [
# LSP servers (others already in home-cli.nix: nixd, typescript-language-server, intelephense)
vscode-langservers-extracted # eslint, html, css, json
elixir-ls
lua-language-server
# Treesitter parser compilation
tree-sitter
];
}