From bb1a61f7a22253b190ce23fb0ea46938c02aaac4 Mon Sep 17 00:00:00 2001 From: dwilliam62 Date: Thu, 6 Mar 2025 01:02:25 +0000 Subject: [PATCH] Edit btop.nix added ROCM/CUDA support --- modules/home/btop.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/home/btop.nix b/modules/home/btop.nix index ef4140d..d3c3b20 100644 --- a/modules/home/btop.nix +++ b/modules/home/btop.nix @@ -3,8 +3,22 @@ { programs.btop = { enable = true; + package = pkgs.btop.override { + rocmSupport = true; + cudaSupport = true; + }; settings = { vim_keys = true; + rounded_corners = true; + proc_tree = true; + show_gpu_info = "on"; + show_uptime = true; + show_coretemp = true; + cpu_sensor = "auto"; + show_disks = true; + only_physical = true; + io_mode = true; + io_graph_combined = false; }; }; }