nix/home-manager/common/software/cli/btop.nix
2024-08-18 14:06:00 +09:00

9 lines
140 B
Nix

{ ... }: {
programs.btop = {
enable = true;
settings = {
color_theme = "TTY";
theme_background = false;
};
};
}