2024-09-05 07:22:41 -04:00

24 lines
354 B
Nix

{ inputs, pkgs, config, ... }:
{
home.packages = with pkgs; [
fzf
ripgrep
luarocks
luajit
lua-language-server
nil
];
programs.neovim = {
enable = true;
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
};
home.file.".config/nvim/" = {
source = ./nvim;
recursive = true;
};
}