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-06 12:51:11 +02:00
|
|
|
assertFileContent home-path/etc/profile.d/hm-session-vars.sh ${
|
|
|
|
./hm-session-vars.sh
|
|
|
|
}
|
2019-04-05 00:04:24 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|