nix/nixos/includes/system/neovim.nix
2023-09-02 15:51:02 +02:00

13 lines
202 B
Nix

{ config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
neovim
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
}