10 lines
229 B
Nix
10 lines
229 B
Nix
{config, ...}: {
|
|
programs.btop = {
|
|
enable = true;
|
|
settings = {
|
|
update_ms = 100;
|
|
theme_background = false;
|
|
color_theme = "${config.programs.btop.package}/share/btop/themes/dracula.theme";
|
|
};
|
|
};
|
|
}
|