dotfiles/nix/home/programs/tmux/default.nix

15 lines
197 B
Nix
Raw Normal View History

2021-10-05 23:42:21 -07:00
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
tmuxinator = {
enable = true;
};
secureSocket = false;
};
home.file.".tmux.conf" = {
source = ./tmux.conf;
};
}