Link: https://github.com/danth/stylix/pull/1106 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
11 lines
204 B
Nix
11 lines
204 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
stylix.testbed.ui.command = {
|
|
text = lib.getExe pkgs.btop;
|
|
useTerminal = true;
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
programs.btop.enable = true;
|
|
};
|
|
}
|