nix/home/config/sway/module/Terminal.nix

8 lines
178 B
Nix
Raw Normal View History

{ config, ... }: {
2024-04-06 03:03:58 +03:00
text = ''
set $term ${config.setting.terminal.bin}
2024-04-06 03:03:58 +03:00
2024-08-20 15:14:18 +03:00
bindsym --to-code $mod+Escape exec $term -e bash -i -c "tmux new-session -A -s $USER; bash -i"
2024-04-06 03:03:58 +03:00
'';
}