remove neovim from base, install vim on server instead

This commit is contained in:
41666 2024-09-11 18:15:13 -07:00
parent ca66362ce6
commit 6f350c8a93
2 changed files with 8 additions and 1 deletions

View file

@ -18,6 +18,13 @@
xclip
];
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
networking.nameservers = lib.mkForce [
"100.80.255.88"
"10.100.69.69"

View file

@ -27,6 +27,6 @@
environment.systemPackages = with pkgs; [
curl
htop
vim
];
}