16 lines
317 B
Nix
16 lines
317 B
Nix
{inputs, ...}: {
|
|
xdg.configFile."btop/themes".source = "${inputs.catppuccin-btop}/themes";
|
|
|
|
programs.btop = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
theme_background = false;
|
|
color_theme = "catppuccin_mocha";
|
|
clock_format = "%Y-%m-%d %X";
|
|
};
|
|
};
|
|
|
|
programs.zsh.shellAliases.htop = "btop";
|
|
}
|