diff options
Diffstat (limited to 'modules/home-manager/btop.nix')
| -rw-r--r-- | modules/home-manager/btop.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/home-manager/btop.nix b/modules/home-manager/btop.nix new file mode 100644 index 0000000..2c4e6cc --- /dev/null +++ b/modules/home-manager/btop.nix @@ -0,0 +1,12 @@ +{ catppuccin-btop, ... }: { + home.file.".config/btop/themes".source = "${catppuccin-btop}/themes"; + + #replace htop/nmon + programs.btop = { + enable = true; + settings = { + color_theme = "catppuccin_mocha"; + theme_background = false; # make btop transparent + }; + }; +} |
