nix/nixos/includes/system/neovim.nix

16 lines
207 B
Nix

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