Skip to content

Commit

Permalink
fix: ghostty - darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan4yin committed Jan 29, 2025
1 parent b30199c commit ec2d417
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions home/base/gui/terminal/ghostty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty; # the stable version
package =
if pkgs.stdenv.isDarwin
then pkgs.emptyDirectory # pkgs.ghostty is currently broken on darwin
else pkgs.ghostty; # the stable version
# package = ghostty.packages.${pkgs.system}.default; # the latest version
enableBashIntegration = true;
enableBashIntegration = false;
installBatSyntax = false;
# installVimSyntax = true;
settings = {
theme = "catppuccin-mocha";
Expand Down
1 change: 1 addition & 0 deletions modules/darwin/apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ in {
"visual-studio-code"
"zed" # zed editor
"aerospace" # an i3-like tiling window manager for macOS
"ghostty" # terminal emulator

# https://joplinapp.org/help/
# "joplin" # note taking app
Expand Down

0 comments on commit ec2d417

Please sign in to comment.