mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-23 15:31:57 +00:00
19 lines
247 B
Nix
19 lines
247 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
withPython3 = true;
|
|
withNodeJs = true;
|
|
withRuby = true;
|
|
};
|
|
}
|