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

11 lines
163 B
Nix
Raw Normal View History

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