From 0d9e494ba6dbc6c2da78d20954e3172fe7c95ec7 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 25 Jan 2024 15:38:22 +0100 Subject: [PATCH] Include vim in the guest to edit files --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 2863e38..36d9c23 100644 --- a/configuration.nix +++ b/configuration.nix @@ -37,5 +37,5 @@ }; }; - environment.systemPackages = with pkgs; [ gdb neofetch gcc bintools ]; + environment.systemPackages = with pkgs; [ vim gdb neofetch gcc bintools ]; }