nixos-config/modules/home/btop/default.nix
2023-11-05 22:49:27 +01:00

11 lines
167 B
Nix

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