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

11 lines
167 B
Nix
Raw Normal View History

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