Files
nix/home/modules/tmux/default.nix
2026-04-26 14:33:19 +02:00

16 lines
242 B
Nix

{ pkgs, dotsPath, ... }:
{
config = {
home.packages = with pkgs; [
tmuxp
reptyr
];
programs.tmux = {
enable = true;
extraConfig = builtins.readFile (dotsPath + "/.config/tmux/tmux.conf");
};
};
}