nixos-systems/modules/system/tmux.nix
Eli Ribble 259c621a2f Create base test-corp environmnt
This creates more commonality between a nixos-anywhere bootstrapped
system and a locally built nixos image, which is good.
2025-07-17 19:39:38 +00:00

14 lines
354 B
Nix

{ config, lib, pkgs, configFiles, ... }:
with lib;
{
environment.systemPackages = [ pkgs.tmux ];
environment.etc."tmux.conf".source = "${configFiles}/tmux/tmux.conf";
# Alternative: if you want per-user configs
# users.users = mkMerge (map (user: {
# ${user}.home = "${configPath}/configs/tmux/tmux.conf";
# }) config.myModules.tmux.users);
}