fixing ghostty config

This commit is contained in:
Kyle Isom 2025-09-02 22:47:47 -07:00
parent a61f4969f4
commit 6f67749808
1 changed files with 5 additions and 5 deletions

View File

@ -1,16 +1,16 @@
{ inputs, pkgs, ... }: { inputs, pkgs, ... }:
{ {
ghostty = { programs.ghostty = {
enable = true; enable = true;
settings = { settings = {
theme = gruvbox-material; theme = "gruvbox-material";
cursor-style = block; cursor-style = "block";
font-family = Brass Mono; font-family = "Brass Mono";
font-size = 20; font-size = 20;
font-thicken = true; font-thicken = true;
window-decoration = none; window-decoration = "none";
}; };
}; };
} }