mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-29 05:41:52 +02:00
fix: ghostty - darwin
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user