nixos-config/modules/home/btop.nix

11 lines
No EOL
147 B
Nix
Executable file

{ config, ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "tokyo-night";
update_ms = 500;
};
};
}