mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-08 20:36:40 +00:00
11 lines
170 B
Nix
11 lines
170 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
config = {
|
|
|
|
# MacOS-specific settings for Fish
|
|
programs.fish.useBabelfish = true;
|
|
programs.fish.babelfishPackage = pkgs.babelfish;
|
|
};
|
|
}
|