From dc1b2ebeff81c172e3325324f0b4dc329c9dd3e0 Mon Sep 17 00:00:00 2001 From: tux Date: Sat, 4 Jan 2025 11:10:26 +0530 Subject: [PATCH] feat: customize ghostty --- modules/home-manager/ghostty/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/home-manager/ghostty/default.nix b/modules/home-manager/ghostty/default.nix index 9cb5c7d..f137f70 100644 --- a/modules/home-manager/ghostty/default.nix +++ b/modules/home-manager/ghostty/default.nix @@ -1,4 +1,18 @@ {pkgs, ...}: { + home.file = { + ".config/ghostty/config" = { + text = '' + theme = rose-pine + + gtk-titlebar = false + window-padding-x = 10 + window-padding-y = 10 + + font-size = 16 + ''; + }; + }; + home.packages = with pkgs; [ ghostty ];