dotfiles.nix/home-manager/sajenim/features/cli/nvim.nix

9 lines
149 B
Nix
Raw Normal View History

2024-08-04 22:21:23 +08:00
{
2024-08-08 09:02:42 +08:00
inputs,
pkgs,
...
}: {
2024-08-04 22:21:23 +08:00
# Install our nixvim configuration for neovim.
2024-08-08 09:02:42 +08:00
home.packages = [inputs.nixvim.packages.${pkgs.system}.default];
2024-08-04 22:21:23 +08:00
}