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