nixos/src/user/modules/tmux/config/shellHook.nix
2024-05-18 23:33:01 -04:00

9 lines
108 B
Nix

''
case $- in
*i*)
if [ -z "$DISPLAY" ] && [ -z "$TMUX" ]; then
exec tmux
fi
;;
esac
''