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