mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 12:36:13 +01:00
21 lines
274 B
Nix
21 lines
274 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# programs.neovim = {
|
|
# enable = true;
|
|
# # package = pkgs.neovim;
|
|
|
|
# # viAlias = true;
|
|
# # vimAlias = true;
|
|
# # vimdiffAlias = true;
|
|
|
|
# # defaultEditor = true;
|
|
# };
|
|
|
|
home.packages = with pkgs; [
|
|
neovim
|
|
];
|
|
}
|