From d1849a6f1482c67f21fa2203c884d820254d94f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Fri, 2 Jan 2026 22:37:22 +0100 Subject: [PATCH] home/ghostty: init --- nix/homeModules/common/ghostty.nix | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 nix/homeModules/common/ghostty.nix diff --git a/nix/homeModules/common/ghostty.nix b/nix/homeModules/common/ghostty.nix new file mode 100644 index 00000000..c34b0d03 --- /dev/null +++ b/nix/homeModules/common/ghostty.nix @@ -0,0 +1,37 @@ +{ + programs.ghostty.settings = { + gtk-titlebar = false; + window-decoration = "none"; + + font-family = "Iosevka"; + font-size = 12; + + background = "#fdf6e3"; + foreground = "#073642"; + palette = [ + "0=#073642" + "1=#af005f" + "2=#859900" + "3=#ba9b23" + "4=#268bd2" + "5=#5f5faf" + "6=#2aa198" + "7=#a0a1a7" + "8=#4d4d4d" + "9=#d33682" + "10=#29a350" + "11=#d6b429" + "12=#469edd" + "13=#6060d1" + "14=#4bccc1" # a platupus? perry the platupus? + "15=#eeeadd" + ]; + + confirm-close-surface = false; + + keybind = [ + "ctrl+shift+==increase_font_size:0.5" + "ctrl+-=decrease_font_size:0.5" + ]; + }; +}