2019-04-05 00:04:24 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.tmux = {
|
|
|
|
enable = true;
|
|
|
|
secureSocket = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-path/etc/profile.d/hm-session-vars.sh
|
2020-04-24 21:41:22 +02:00
|
|
|
assertFileContains home-path/etc/profile.d/hm-session-vars.sh \
|
2023-02-05 11:22:41 +01:00
|
|
|
'export TMUX_TMPDIR="''${XDG_RUNTIME_DIR:-"/run/user/$(id -u)"}"'
|
2019-04-05 00:04:24 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|