From 2dc04f2ebfcd22bf1bc44c02df12b7f3ef3d8e5c Mon Sep 17 00:00:00 2001 From: gwg313 Date: Sat, 24 Feb 2024 14:32:21 -0500 Subject: [PATCH] fix: update tmux alias to use sesh --- home-manager/modules/tmux/tmux.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/home-manager/modules/tmux/tmux.nix b/home-manager/modules/tmux/tmux.nix index a0fa25d..217c6f2 100644 --- a/home-manager/modules/tmux/tmux.nix +++ b/home-manager/modules/tmux/tmux.nix @@ -1,7 +1,6 @@ { pkgs, config, - user, ... }: { stylix.targets.tmux.enable = false; @@ -156,7 +155,7 @@ programs.zsh = { shellAliases = { - tx = "tmux new -s default"; + tx = "sesh connect /home/${config.home.username}"; ta = "tmux attach -t"; tad = "tmux attach -d -t"; ts = "tmux new-session -s";