From 3215644a871f51189b6970183b1e3c3c4a1e6477 Mon Sep 17 00:00:00 2001 From: biscuit Date: Tue, 20 May 2025 07:30:55 -0500 Subject: [PATCH] added btop --- modules/system.nix | 1 + system/tools.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 system/tools.nix diff --git a/modules/system.nix b/modules/system.nix index 29e8442..5d9bae7 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -15,5 +15,6 @@ ../system/timezone.nix # ../system/touchpad.nix ../system/users.nix + ../system/tools.nix ]; } diff --git a/system/tools.nix b/system/tools.nix new file mode 100644 index 0000000..1ee7cb4 --- /dev/null +++ b/system/tools.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: { + environment.systemPackages = with pkgs; [ + btop + ]; +}