fix: empty-directory does not have the meta.mainProgram attribute

This commit is contained in:
Ryan Yin
2025-04-19 22:24:59 +08:00
parent f1a3aa0e9c
commit c872728eea

View File

@@ -11,10 +11,10 @@
{
programs.ghostty = {
enable = true;
package =
if pkgs.stdenv.isDarwin
then pkgs.emptyDirectory # pkgs.ghostty is currently broken on darwin
else pkgs.ghostty; # the stable version
package =
if pkgs.stdenv.isDarwin
then pkgs.hello # pkgs.ghostty is currently broken on darwin
else pkgs.ghostty; # the stable version
# package = ghostty.packages.${pkgs.system}.default; # the latest version
enableBashIntegration = false;
installBatSyntax = false;