From 8feb70e5cf07f310d0b5a659ff2983e06385559a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 11 Jun 2025 15:29:45 +0300 Subject: [PATCH] ghostty: use null for package instead --- modules/common/ghostty.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/common/ghostty.nix b/modules/common/ghostty.nix index b6a8af4..28cd63a 100644 --- a/modules/common/ghostty.nix +++ b/modules/common/ghostty.nix @@ -10,9 +10,9 @@ in merge <| mkIf config.isDesktop { programs.ghostty = enabled { # Don't actually install Ghostty if we are on Darwin. # For some reason it is marked as broken. - package = mkIf config.isDarwin <| pkgs.writeScriptBin "not-ghostty" ""; + package = mkIf config.isDarwin null; - # Bat syntax points to emptyDirectory. + # Can't install things from null. installBatSyntax = !config.isDarwin; clearDefaultKeybinds = true;