use my neovim flake for neovim!

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-05-02 14:23:23 -05:00
parent afdc4776ff
commit dac69de5ae
4 changed files with 103 additions and 15 deletions

View file

@ -0,0 +1,7 @@
{ pkgs, settings, ringofstorms-nvim, ... }:
{
environment.systemPackages = with pkgs; [
ringofstorms-nvim.packages.${settings.system.system}.neovim
];
}

View file

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# extras, more for my neovim setup TODO move these into a more isolated place for nvim setup? Should be its own flake probably
neovim
cargo
rustc
nodejs_21
python313
nodePackages.cspell
# ripgrep (now in common but will be needed in neovim flake)
];
}