mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
Explicitly disable nano
This commit is contained in:
parent
edade19d64
commit
e47f41a3c0
|
@ -1,10 +1,17 @@
|
|||
{
|
||||
{lib, ...}: let
|
||||
inherit (lib) mkForce;
|
||||
in {
|
||||
|
||||
# Install an actually usable system-wide editor
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
vimAlias = true;
|
||||
viAlias = true;
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue