13 lines
202 B
Nix
13 lines
202 B
Nix
{ config, pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
];
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
}
|