Files
nix-config/modules/hm/shell/btop.nix
2026-05-06 19:48:33 +05:30

13 lines
248 B
Nix

{
flake.modules.homeManager.shell = {
programs.btop = {
enable = true;
settings = {
theme_background = false;
update_ms = 1000;
presets = "cpu:0:default mem:0:default net:0:default";
};
};
};
}