{ pkgs, lib, ... }: let ghosttyStub = (pkgs.runCommand "ghostty-stub" { } "mkdir -p $out/bin") // { meta.mainProgram = "ghostty"; }; in { programs.ghostty = { enable = true; package = lib.mkForce ghosttyStub; enableZshIntegration = false; enableBashIntegration = false; settings = { theme = "Catppuccin Macchiato"; background-opacity = "0.95"; }; }; }