From 617715d28fcb8970eb5a4a6a9b935c94bbee1c76 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Tue, 3 Jun 2025 18:02:33 +0200 Subject: [PATCH] add proper vim and zoxide --- configuration.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 03381a3..8bcc986 100644 --- a/configuration.nix +++ b/configuration.nix @@ -139,7 +139,6 @@ # $ nix search wget environment.systemPackages = with pkgs; [ # TOOLS - vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget unzip pciutils @@ -190,6 +189,13 @@ intel-one-mono ]; + programs.zoxide.enable = true; + + programs.vim = { + enable = true; + defaultEditor = true; + } + programs.firefox.enable = true; programs.thunderbird.enable = true;