{ lib, config, pkgs, ... }: let cfg = config.tmux; in { options.tmux = {}; config = { home.packages = [ pkgs.tmux ]; home.file = { ".config/tmux".source = ./tmux; }; }; }