14 lines
197 B
Nix
14 lines
197 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.tmux = {
|
|
enable = true;
|
|
tmuxinator = {
|
|
enable = true;
|
|
};
|
|
secureSocket = false;
|
|
};
|
|
|
|
home.file.".tmux.conf" = {
|
|
source = ./tmux.conf;
|
|
};
|
|
}
|