more stuff

This commit is contained in:
gwg313 2025-02-09 11:16:45 -05:00
parent 42a0bf27e0
commit fe34badada
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
24 changed files with 904 additions and 2343 deletions

View file

@ -2,7 +2,8 @@
pkgs,
config,
...
}: {
}:
{
stylix.targets.tmux.enable = false;
programs.tmux = {
enable = true;
@ -182,4 +183,16 @@
bindkey -M viins '\es' sesh-sessions
'';
};
programs.nushell = {
shellAliases = {
tx = "sesh connect /home/${config.home.username}";
ta = "tmux attach -t";
tad = "tmux attach -d -t";
ts = "tmux new-session -s";
tl = "tmux list-sessions";
tksv = "tmux kill-server";
tkss = "tmux kill-session -t";
};
};
}