flake/nixos/nvim.nix
2024-11-16 13:38:09 -05:00

12 lines
272 B
Nix
Executable file

{ pkgs, ... }: {
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ neovim ];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
}