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