mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
tmux: only enable secureSocket on Linux by default
Darwin does not have the `/run/user` directory. PR #1349
This commit is contained in:
parent
1f174f6681
commit
8ab1139891
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ in
|
|||
};
|
||||
|
||||
secureSocket = mkOption {
|
||||
default = true;
|
||||
default = pkgs.stdenv.isLinux;
|
||||
type = types.bool;
|
||||
description = ''
|
||||
Store tmux socket under <filename>/run</filename>, which is more
|
||||
|
|
Loading…
Reference in a new issue