From ecfb093658f9101432563014d0d88cb747fe1b80 Mon Sep 17 00:00:00 2001 From: Flameopathic <64027365+Flameopathic@users.noreply.github.com> Date: Thu, 3 Jul 2025 14:22:06 -0400 Subject: [PATCH] tmux: add testbed (#1577) Reviewed-by: awwpotato --- modules/tmux/testbeds/tmux.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 modules/tmux/testbeds/tmux.nix diff --git a/modules/tmux/testbeds/tmux.nix b/modules/tmux/testbeds/tmux.nix new file mode 100644 index 00000000..fe9581ae --- /dev/null +++ b/modules/tmux/testbeds/tmux.nix @@ -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; + }; +}