Make vim the default editor everywhere

This commit is contained in:
Sandro - 2021-10-02 19:41:34 +02:00
parent 36931f80b2
commit 5a059ca435
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 3 additions and 0 deletions

View File

@ -238,6 +238,7 @@ in {
enable = true;
permitRootLogin = "yes";
};
environment.systemPackages = with pkgs; [
curl
git
@ -247,6 +248,8 @@ in {
wget
];
programs.vim.defaultEditor = true;
programs.ssh.knownHosts = with builtins;
let
hostNames = hostRegistry.hqLocal;