nixos-config/modules/home/btop.nix

11 lines
141 B
Nix

{pkgs, ...}: {
programs.btop = {
enable = true;
settings = {
theme_background = false;
update_ms = 500;
};
};
}