mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-07-13 08:02:40 +02:00
fix: ghostty - darwin
This commit is contained in:
@@ -11,9 +11,13 @@
|
|||||||
{
|
{
|
||||||
programs.ghostty = {
|
programs.ghostty = {
|
||||||
enable = true;
|
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
|
# package = ghostty.packages.${pkgs.system}.default; # the latest version
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = false;
|
||||||
|
installBatSyntax = false;
|
||||||
# installVimSyntax = true;
|
# installVimSyntax = true;
|
||||||
settings = {
|
settings = {
|
||||||
theme = "catppuccin-mocha";
|
theme = "catppuccin-mocha";
|
||||||
|
|||||||
@@ -159,6 +159,7 @@ in {
|
|||||||
"visual-studio-code"
|
"visual-studio-code"
|
||||||
"zed" # zed editor
|
"zed" # zed editor
|
||||||
"aerospace" # an i3-like tiling window manager for macOS
|
"aerospace" # an i3-like tiling window manager for macOS
|
||||||
|
"ghostty" # terminal emulator
|
||||||
|
|
||||||
# https://joplinapp.org/help/
|
# https://joplinapp.org/help/
|
||||||
# "joplin" # note taking app
|
# "joplin" # note taking app
|
||||||
|
|||||||
Reference in New Issue
Block a user