mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
17 lines
330 B
Nix
17 lines
330 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkForce;
|
|
in {
|
|
programs = {
|
|
# Explicitly disable nano, it sucks and I don't want it
|
|
nano.enable = mkForce false;
|
|
|
|
# Install an actually usable system-wide editor
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
viAlias = true;
|
|
};
|
|
};
|
|
}
|