tmux: add testbed (#1577)

Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
Flameopathic 2025-07-03 14:22:06 -04:00 committed by GitHub
parent d21cfb364a
commit ecfb093658
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,10 @@
{ pkgs, lib, ... }:
{
stylix.testbed.ui.command = {
text = lib.getExe pkgs.tmux;
useTerminal = true;
};
home-manager.sharedModules = lib.singleton {
programs.tmux.enable = true;
};
}