From 5a8cdeedcd78bf1778a959e3174d2a0b13232434 Mon Sep 17 00:00:00 2001 From: xunuwu Date: Thu, 29 Feb 2024 20:03:32 +0100 Subject: [PATCH] add common system tools (busybox, wget, etc) --- system/core/tools.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/core/tools.nix b/system/core/tools.nix index 15a43be..cb1e4cf 100644 --- a/system/core/tools.nix +++ b/system/core/tools.nix @@ -1,6 +1,10 @@ {pkgs, ...}: { environment.systemPackages = with pkgs; [ + busybox htop + wget + ripgrep + nethogs ffmpeg ]; }