blob: 1e1b6c8db705903430342e7567bed8dcef6822ce [file] [log] [blame]
Skyler Grey58d12a62022-06-07 19:02:00 +01001{ pkgs, ... }: {
2 programs.tmux = {
3 enable = true;
4 newSession = true;
5 tmuxinator.enable = true;
6 extraConfig = ''
7 bind k confirm-before kill-session
8 '';
9 };
10
11 home.packages = [
12 pkgs.elinks
Skyler Greyc96cd8a2022-06-15 12:28:27 +010013 pkgs.zellij
Skyler Grey58d12a62022-06-07 19:02:00 +010014 ];
15
16 home.file.".config/tmuxinator/ide.yml".source = ./tmux/ide.yml;
17}