mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
12 lines
172 B
Nix
12 lines
172 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
config = {
|
||
|
|
||
|
# MacOS-specific settings for Fish
|
||
|
programs.fish.useBabelfish = true;
|
||
|
programs.fish.babelfishPackage = pkgs.babelfish;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|