11 lines
229 B
Nix
11 lines
229 B
Nix
{pkgs, ...}: {
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
useBabelfish = true;
|
|
};
|
|
nix-index.enableFishIntegration = true;
|
|
direnv.enableFishIntegration = true;
|
|
foot.enableFishIntegration = true;
|
|
};
|
|
}
|