home/common | add tui.nix, iamb, chat.yaml

This commit is contained in:
Don Harper 2025-06-09 21:28:18 -05:00
parent f46aa99649
commit 0bd6b8aa99
4 changed files with 32 additions and 1 deletions

View file

@ -20,6 +20,7 @@
./taskwarrior.nix
./topgrade.nix
./tmux.nix
./tui.nix
./vifm.nix
];
home.packages = with pkgs; [

View file

@ -0,0 +1,9 @@
# /home/don/.config/tmuxinator/nixos.yml
name: chat
root: ~/Downloads
windows:
- matrix: iamb
- telegram: nchat

View file

@ -72,6 +72,7 @@
bind C-8 select-window -t 18
bind C-9 select-window -t 19
bind C-c run "tmux show-buffer | wl-copy"
bind C-n neww -n net "exec $TEXTWEB"
bind C-t neww -n vit "exec vit"
bind C-v run "tmux set-buffer -- \"$(wl-paste)\"; tmux paste-buffer"
bind F1 select-window -t 11
@ -93,7 +94,6 @@
bind g select-layout tiled
bind o select-pane -t :.-
bind-key u capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlscan" '$SHELL -c "urlscan -c -d < /tmp/tmux-buffer"'
bind-key -n C-l send-keys 'C-l'
set -g bell-action any
set -g buffer-limit 9
set -g display-panes-active-colour red

21
home/common/tui.nix Normal file
View file

@ -0,0 +1,21 @@
{ ... }:
{
programs = {
iamb = {
enable = true;
settings = {
default_profile = "personal";
profiles = {
"personal" = {
user_id = "@duckunix:matrix.org";
};
};
settings = {
notifications = {
enabled = true;
};
};
};
};
};
}