2025-07-11 21:24:59 +00:00
|
|
|
{ config, lib, pkgs, configFiles, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
{
|
2025-07-17 19:39:38 +00:00
|
|
|
environment.systemPackages = [ pkgs.tmux ];
|
2025-07-11 21:24:59 +00:00
|
|
|
|
2025-07-17 19:39:38 +00:00
|
|
|
environment.etc."tmux.conf".source = "${configFiles}/tmux/tmux.conf";
|
2025-07-11 21:24:59 +00:00
|
|
|
|
2025-07-17 19:39:38 +00:00
|
|
|
# Alternative: if you want per-user configs
|
|
|
|
|
# users.users = mkMerge (map (user: {
|
|
|
|
|
# ${user}.home = "${configPath}/configs/tmux/tmux.conf";
|
|
|
|
|
# }) config.myModules.tmux.users);
|
2025-07-11 21:24:59 +00:00
|
|
|
}
|