From 4f98e6a0e832af6d4a700e9a7a6c8501554d0a93 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 4 Jul 2025 00:59:00 -0500 Subject: [PATCH] logical and fix --- homeManagerModules/ghostty.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeManagerModules/ghostty.nix b/homeManagerModules/ghostty.nix index a0fe011..c1c470e 100644 --- a/homeManagerModules/ghostty.nix +++ b/homeManagerModules/ghostty.nix @@ -1,10 +1,10 @@ { config, pkgs, lib, ... }: { - home.sessionVariables = lib.mkIf (config.enableShell and config.graphical) { + home.sessionVariables = lib.mkIf (config.enableShell && config.graphical) { TERMINAL = "ghostty"; }; - programs.ghostty = lib.mkIf (config.enableShell and config.graphical) { + programs.ghostty = lib.mkIf (config.enableShell && config.graphical) { enable = true; enableZshIntegration = true; settings = {