nixfleet/hmModules/btop/default.nix
2024-04-02 12:42:53 +02:00

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";
};
};
}