nixos-config/modules/home/btop/default.nix
2023-11-11 16:06:16 +01:00

12 lines
178 B
Nix

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