nix-dotfiles/home-manager/modules/nvim.nix
2025-03-16 03:05:52 -06:00

19 lines
292 B
Nix

{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
neovim
ripgrep
fd
nodejs
gcc
];
xdg.configFile."nvim" = {
source = builtins.fetchGit {
url = "https://github.com/alsaiduq-lab/dotfiles.git";
ref = "dev";
}
recursive = true;
};
}