mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
14 lines
338 B
Nix
14 lines
338 B
Nix
{
|
|
config = {
|
|
programs.tmux = {
|
|
enable = true;
|
|
secureSocket = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
|
|
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
|
|
'export TMUX_TMPDIR="''${XDG_RUNTIME_DIR:-"/run/user/$(id -u)"}"'
|
|
'';
|
|
};
|
|
}
|