19 lines
379 B
Nix
19 lines
379 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
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)"}"'
|
||
|
'';
|
||
|
};
|
||
|
}
|