From 7f857ab6617f3f0717bcfbdf3137526a10ed40f9 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 31 Oct 2023 14:56:18 +0000 Subject: [PATCH] hosts: homes: mousqueton: fix formatting --- hosts/homes/ambroisie@mousqueton/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/hosts/homes/ambroisie@mousqueton/default.nix b/hosts/homes/ambroisie@mousqueton/default.nix index 7f9d659..7fcd356 100644 --- a/hosts/homes/ambroisie@mousqueton/default.nix +++ b/hosts/homes/ambroisie@mousqueton/default.nix @@ -17,9 +17,13 @@ services.gpg-agent.enable = lib.mkForce false; - # I use scripts that use the passthrough sequence often on this host - my.home.tmux.enablePassthrough = true; + my.home = { + tmux = { + # I use scripts that use the passthrough sequence often on this host + enablePassthrough = true; - # HTerm uses `xterm-256color` as its `$TERM`, so use that here - my.home.tmux.trueColorTerminals = [ "xterm-256color" ]; + # HTerm uses `xterm-256color` as its `$TERM`, so use that here + trueColorTerminals = [ "xterm-256color" ]; + }; + }; }