9 lines
128 B
Nix
9 lines
128 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
useBabelfish = true;
|
|
babelfishPackage = pkgs.babelfish;
|
|
};
|
|
}
|