nix-config/aspects/cli/btop.nix
2026-02-12 18:50:38 -03:00

20 lines
315 B
Nix

{ ... }:
{
flake.modules.homeManager.cli-btop =
{
config,
lib,
pkgs,
...
}:
{
programs.btop = {
enable = true;
settings = {
theme_background = false;
proc_sorting = "cpu direct";
update_ms = 500;
};
};
};
}