From 8feb70e5cf07f310d0b5a659ff2983e06385559a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 11 Jun 2025 15:29:45 +0300 Subject: [PATCH 1/2] 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; From 43386cc144937688b5b512baa038e9813da5d788 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 11 Jun 2025 15:50:45 +0300 Subject: [PATCH 2/2] paperwm: spacing fixes --- modules/darwin/paperwm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/darwin/paperwm.nix b/modules/darwin/paperwm.nix index bff5a14..dba5d76 100644 --- a/modules/darwin/paperwm.nix +++ b/modules/darwin/paperwm.nix @@ -21,8 +21,8 @@ in { "com.apple.keyboard.fnState" = false; # Don't invert Fn. "com.apple.trackpad.scaling" = 1.5; # Faster mouse speed. - InitialKeyRepeat = 15; - KeyRepeat = 1; + InitialKeyRepeat = 15; + KeyRepeat = 1; NSAutomaticCapitalizationEnabled = false; NSAutomaticDashSubstitutionEnabled = false;