NixOS-Configs/home/btop.nix
2023-09-24 14:00:20 -05:00

11 lines
196 B
Nix

{ config, pkgs, ... }:
{
#home.packages = with pkgs; [ btop ];
programs.btop = {
enable = true;
settings = {
colorTheme = "dracula";
theme_background = true;
};
};
}