Skip to content

Commit

Permalink
ghostty: darwin tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jan 29, 2025
1 parent a332834 commit 1fc0c8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions modules/home/programs/terminal/emulators/ghostty/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ in
config = mkIf cfg.enable {
programs.ghostty = {
enable = true;
package = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin pkgs.emptyDirectory;
package = lib.mkIf pkgs.stdenv.hostPlatform.isDarwin null;

installBatSyntax = true;
installVimSyntax = true;
installBatSyntax = pkgs.stdenv.hostPlatform.isLinux;
installVimSyntax = pkgs.stdenv.hostPlatform.isLinux;

enableBashIntegration = true;
enableFishIntegration = true;
Expand Down

0 comments on commit 1fc0c8c

Please sign in to comment.