diff --git a/modules/common/ghostty.nix b/modules/common/ghostty.nix index 28cd63a..b6a8af4 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 null; + package = mkIf config.isDarwin <| pkgs.writeScriptBin "not-ghostty" ""; - # Can't install things from null. + # Bat syntax points to emptyDirectory. installBatSyntax = !config.isDarwin; clearDefaultKeybinds = true; diff --git a/modules/darwin/paperwm.nix b/modules/darwin/paperwm.nix index dba5d76..bff5a14 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;