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