14 lines
348 B
Nix
14 lines
348 B
Nix
{ 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)
|
|
];
|
|
}
|
|
|