mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-29 13:51:50 +02:00
14 lines
373 B
Nix
14 lines
373 B
Nix
{catppuccin-btop, ...}: {
|
|
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_mocha.theme
|
|
home.file.".config/btop/themes".source = "${catppuccin-btop}/themes";
|
|
|
|
# replacement of htop/nmon
|
|
programs.btop = {
|
|
enable = true;
|
|
settings = {
|
|
color_theme = "catppuccin_mocha";
|
|
theme_background = false; # make btop transparent
|
|
};
|
|
};
|
|
}
|