19 lines
206 B
Nix
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;
|
|
};
|
|
};
|
|
}
|