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