feat(tmux): use soft secrets to handle sessions

This commit is contained in:
Yorick Barbanneau 2025-08-11 23:02:50 +02:00
parent 8bf663b78a
commit 6e9ef448db
4 changed files with 12 additions and 14 deletions

View file

@ -25,7 +25,10 @@
git.enable = true;
neovim.enable = true;
starship.enable = true;
tmux.enable = true;
tmux = {
enable = true;
extraConfig = inputs.nix-private.tmux.personal;
};
utils.enable = true;
vifm.enable = true;
zellij.enable = true;

View file

@ -26,12 +26,8 @@
starship.enable = true;
tmux = {
enable = true;
extraConfig = ''
bind -n M-F9 run 'create-tmux-session -n quipu -r quipuapp "run:nvim ." repo:quipu-infrastructure neww:quipu-infra p:sellsy hsplit:50 run:k9s repo:charts neww:charts'
bind -n M-F8 run 'create-tmux-session -n verifactu -r verifactu "run:nvim ." repo:verifactu-infrastructure neww:verifactu-infra repo:sellsy hsplit:50 run:k9s repo:charts neww:charts'
'';
extraConfig = inputs.nix-private.tmux.work;
};
utils.enable = true;
vifm.enable = true;
zellij.enable = true;