From 477cff109c1338718814de10bfc4b2641f9b3d3a Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Sat, 27 Sep 2025 23:42:58 +0200 Subject: [PATCH] feat: add ghostty Signed-off-by: Lander Van den Bulcke --- home/lander/features/workstation/default.nix | 1 + home/lander/features/workstation/ghostty.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 home/lander/features/workstation/ghostty.nix diff --git a/home/lander/features/workstation/default.nix b/home/lander/features/workstation/default.nix index 76a482f..0300066 100644 --- a/home/lander/features/workstation/default.nix +++ b/home/lander/features/workstation/default.nix @@ -2,6 +2,7 @@ { imports = [ ./alacritty.nix + ./ghostty.nix ./irssi.nix #./mail.nix ]; diff --git a/home/lander/features/workstation/ghostty.nix b/home/lander/features/workstation/ghostty.nix new file mode 100644 index 0000000..478e2ea --- /dev/null +++ b/home/lander/features/workstation/ghostty.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: +let + theme = import ../../../../lib/theme { inherit pkgs; }; +in +{ + programs.ghostty = { + enable = true; + enableZshIntegration = true; + + settings = { + font-family = "${theme.fonts.monospace.name}"; + }; + }; + + catppuccin.ghostty.enable = true; +}