From 6f6774980844b96025170af4c00c773236137f00 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 2 Sep 2025 22:47:47 -0700 Subject: [PATCH] fixing ghostty config --- configs/ghostty.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configs/ghostty.nix b/configs/ghostty.nix index e0a8b21..ad545b4 100644 --- a/configs/ghostty.nix +++ b/configs/ghostty.nix @@ -1,16 +1,16 @@ { inputs, pkgs, ... }: { - ghostty = { + programs.ghostty = { enable = true; settings = { - theme = gruvbox-material; - cursor-style = block; - font-family = Brass Mono; + theme = "gruvbox-material"; + cursor-style = "block"; + font-family = "Brass Mono"; font-size = 20; font-thicken = true; - window-decoration = none; + window-decoration = "none"; }; }; }