From fad82fc781d20e4ab2b54827969312ed4e045797 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Fri, 4 Jul 2025 20:30:55 +0800 Subject: [PATCH] refactor(homes/rafiq): clean up terminal settings --- homes/x86_64-linux/rafiq/desktop/terminal.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/homes/x86_64-linux/rafiq/desktop/terminal.nix b/homes/x86_64-linux/rafiq/desktop/terminal.nix index 64bd6b8..c4dda90 100644 --- a/homes/x86_64-linux/rafiq/desktop/terminal.nix +++ b/homes/x86_64-linux/rafiq/desktop/terminal.nix @@ -1,5 +1,9 @@ { home.sessionVariables.TERMINAL = "ghostty -e"; - programs.ghostty.enable = true; - programs.ghostty.settings.confirm-close-surface = false; + programs.ghostty = { + enable = true; + settings = { + confirm-close-surface = false; + }; + }; }