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; +}