dotfiles/modules/btop.nix

20 lines
439 B
Nix
Raw Normal View History

2023-02-10 07:57:37 +01:00
{pkgs, ...}: {
programs.btop = {
enable = true;
settings = {
color_theme = "catppuccin_mocha";
theme_background = false;
vim_keys = true;
};
};
xdg.configFile."btop/themes" = {
source = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "btop";
rev = "ecb8562bb6181bb9f2285c360bbafeb383249ec3";
sha256 = "sha256-ovVtupO5jWUw6cwA3xEzRe1juUB8ykfarMRVTglx3mk=";
};
};
}