nixos-combined-flake/modules/home-manager/shell/btop/default.nix

9 lines
175 B
Nix

{ config, lib, ... }: lib.mkIf config.programs.btop.enable {
programs.btop = {
settings = {
color_theme = "Default";
theme_background = false;
};
};
}