feat: add ghostty

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-09-27 23:42:58 +02:00
parent ea6f358eaf
commit 477cff109c
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 17 additions and 0 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./alacritty.nix
./ghostty.nix
./irssi.nix
#./mail.nix
];

View file

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