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