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

8 lines
147 B
Nix
Raw Normal View History

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