From 789f5627012e999eeb39521cad2097a2fd1207d1 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 2 Sep 2025 21:31:32 -0700 Subject: [PATCH] ghostty config --- configs/desktop.nix | 1 + configs/ghostty.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 configs/ghostty.nix diff --git a/configs/desktop.nix b/configs/desktop.nix index 603c6bb..735bd17 100644 --- a/configs/desktop.nix +++ b/configs/desktop.nix @@ -4,6 +4,7 @@ { ... }: { imports = [ ./desktop-packages.nix + ./ghostty.nix ]; services.xserver = { diff --git a/configs/ghostty.nix b/configs/ghostty.nix new file mode 100644 index 0000000..2a6f76f --- /dev/null +++ b/configs/ghostty.nix @@ -0,0 +1,16 @@ +{ inputs, pkgs, ... }: + +{ + ghostty = { + enable = true; + settings = { + theme = gruvbox-material; + cursor-style = block; + font-family = Brass Mono; + font-size = 20; + font-thicken = true; + + window-decoration = none; + }; + } +}