switch to babelfish to improve fish macos startup

This commit is contained in:
Noah Masur 2023-04-05 14:11:44 -04:00
parent f4d9897f21
commit 4df1132eb7
2 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,7 @@
imports = [
./alacritty.nix
./fish.nix
./fonts.nix
./hammerspoon.nix
./homebrew.nix

11
modules/darwin/fish.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
config = {
# MacOS-specific settings for Fish
programs.fish.useBabelfish = true;
programs.fish.babelfishPackage = pkgs.babelfish;
};
}