mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-24 17:58:30 +02:00
13 lines
183 B
Nix
13 lines
183 B
Nix
{pkgs, ...}: {
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
package = pkgs.neovim;
|
|
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
};
|
|
};
|
|
}
|