1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-08-01 20:47:48 +00:00

Compare commits

..

No commits in common. "43386cc144937688b5b512baa038e9813da5d788" and "ed0e6af0c890102f8e69ed92f1ee1f127a0089d7" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -10,9 +10,9 @@ in merge <| mkIf config.isDesktop {
programs.ghostty = enabled { programs.ghostty = enabled {
# Don't actually install Ghostty if we are on Darwin. # Don't actually install Ghostty if we are on Darwin.
# For some reason it is marked as broken. # 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; installBatSyntax = !config.isDarwin;
clearDefaultKeybinds = true; clearDefaultKeybinds = true;

View file

@ -21,8 +21,8 @@ in {
"com.apple.keyboard.fnState" = false; # Don't invert Fn. "com.apple.keyboard.fnState" = false; # Don't invert Fn.
"com.apple.trackpad.scaling" = 1.5; # Faster mouse speed. "com.apple.trackpad.scaling" = 1.5; # Faster mouse speed.
InitialKeyRepeat = 15; InitialKeyRepeat = 15;
KeyRepeat = 1; KeyRepeat = 1;
NSAutomaticCapitalizationEnabled = false; NSAutomaticCapitalizationEnabled = false;
NSAutomaticDashSubstitutionEnabled = false; NSAutomaticDashSubstitutionEnabled = false;