nixos-config/modules/home/btop/default.nix

11 lines
159 B
Nix
Raw Normal View History

2023-11-05 22:16:46 +01:00
{ pkgs, ... }:
{
programs.btop = {
enable = true;
settings = {
color_theme = "dracula";
theme_background = false;
};
};
}