9 lines
135 B
Nix
9 lines
135 B
Nix
{ pkgs, util, ... } @args: let
|
|
tmux = import ./tmux args;
|
|
in {
|
|
programs.tmux = {
|
|
enable = true;
|
|
extraConfig = tmux.config;
|
|
};
|
|
}
|