From 14aa3e8d5e7a415322aa27a290097c1ea05fcf49 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 15 May 2024 23:37:23 +0200 Subject: [PATCH] Disable nano I did not know that it was actually enabled on every system. This commit replaces it with vim. --- modules/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/default.nix b/modules/default.nix index f3a4b85..905f12a 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -80,9 +80,11 @@ git-lfs # not so essential, but required to clone config htop tmux - vim ]; + programs.nano.enable = false; + programs.vim.defaultEditor = true; + # Clean temporary files on boot boot.tmp.cleanOnBoot = true;