From 06989facc2f964d697f6400a50416c6d54eecda2 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 22 Feb 2023 16:09:15 +0000 Subject: [PATCH] machines: porthos: home: enable tmux auto-launch I'm about to flip the default to always disabled, so enable it explicitly. --- machines/porthos/home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/machines/porthos/home.nix b/machines/porthos/home.nix index ce312c4..53d5d25 100644 --- a/machines/porthos/home.nix +++ b/machines/porthos/home.nix @@ -1,4 +1,7 @@ { ... }: { - # To be filled out + my.home = { + # Always start a tmux session when opening a shell session + zsh.launchTmux = true; + }; }