8 lines
162 B
Nix
8 lines
162 B
Nix
{ config, ... }: {
|
|
text = ''
|
|
set $term ${config.setting.terminal.bin}
|
|
|
|
bindsym $mod+Escape exec $term -e bash -c "tmux new-session -A -s $USER; bash"
|
|
'';
|
|
}
|