dotfiles/flakes/common/nix_modules/tmux/default.nix
RingOfStorms (Joshua Bell) 2064001076 fix tat
2026-01-07 19:16:55 -06:00

19 lines
292 B
Nix

{
lib,
pkgs,
...
}:
{
environment.systemPackages = [
pkgs.tmux
];
environment.shellAliases = {
tat = "tmux attach-session || tmux new-session";
t = "tmux";
};
environment.shellInit = lib.concatStringsSep "\n\n" [
(builtins.readFile ./tmux_helpers.sh)
];
}