11.stylix/modules/btop/testbeds/default.nix
Flameopathic 764fd32955
btop: add testbed (#1106)
Link: https://github.com/danth/stylix/pull/1106

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-04-29 23:35:38 +02:00

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;
};
}