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