mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
17 lines
325 B
Nix
17 lines
325 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
|
|
assertFileContent home-path/etc/profile.d/hm-session-vars.sh ${./hm-session-vars.sh}
|
|
'';
|
|
};
|
|
}
|