20 lines
366 B
Nix
20 lines
366 B
Nix
{ pkgs, dotsPath, ... }:
|
|
|
|
{
|
|
config = {
|
|
home.packages = with pkgs; [
|
|
tmuxp
|
|
reptyr
|
|
];
|
|
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile (dotsPath + "/.config/tmux/tmux.conf");
|
|
};
|
|
|
|
home.file = {
|
|
".config/tmux/hooks/tmux.ssh.conf".source = dotsPath + "/.config/tmux/hooks/tmux.ssh.conf";
|
|
};
|
|
};
|
|
}
|