dotfiles/nix/home/programs/tmux/default.nix
2021-10-05 23:42:21 -07:00

14 lines
197 B
Nix

{ pkgs, ... }:
{
programs.tmux = {
enable = true;
tmuxinator = {
enable = true;
};
secureSocket = false;
};
home.file.".tmux.conf" = {
source = ./tmux.conf;
};
}