From 8ab113989126d738691ad70394ad5d0a57dab462 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jun 2020 04:20:00 -0500 Subject: [PATCH] tmux: only enable secureSocket on Linux by default Darwin does not have the `/run/user` directory. PR #1349 --- modules/programs/tmux.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/tmux.nix b/modules/programs/tmux.nix index b3aa53bca..a71c302ac 100644 --- a/modules/programs/tmux.nix +++ b/modules/programs/tmux.nix @@ -251,7 +251,7 @@ in }; secureSocket = mkOption { - default = true; + default = pkgs.stdenv.isLinux; type = types.bool; description = '' Store tmux socket under /run, which is more