Enable neovim instead of vim

This commit is contained in:
ItsDrike 2024-04-07 15:52:07 +02:00
parent d7792681cf
commit 439f9a15f3
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -1,6 +1,10 @@
{ pkgs, ... }: {
# Basic list of must-have packages for all systems
environment.systemPackages = with pkgs; [
vim
];
# Install an actually usable system-wide editor
programs.neovim = {
enable = true;
defaultEditor = true;
vimAlias = true;
viAlias = true;
};
}