11.stylix/modules/btop/testbeds/btop.nix
2025-05-24 08:53:58 -04: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;
};
}