nixos/home/btop/home.nix
2025-01-13 11:52:09 +08:00

19 lines
206 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.passthrough.btop;
in
mkIf cfg.enable {
programs.btop = {
enable = true;
settings = {
theme_background = false;
};
};
}