Merge branch 'dwilliam62-main-patch-btop-gpu-monitoring' into 'main'

Edit btop.nix added ROCM/CUDA support

See merge request Zaney/zaneyos!68
This commit is contained in:
Tyler Kelley 2025-03-06 01:02:25 +00:00
commit 5c5ef5b973

View File

@ -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;
};
};
}