Skip to content

Commit

Permalink
nixos/installer: ship only one mbrola voice per language
Browse files Browse the repository at this point in the history
This reduces the size of mbrola-voices by 387M (647M -> 260M) for all
installers that ship with speechd, to make sure that they fit the output
limits of hydra while not compromising too much on accessbility.
  • Loading branch information
mweinelt committed Jul 24, 2024
1 parent 609085b commit 780f766
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,13 @@ with lib;
glxinfo
];

nixpkgs.overlays = [
(self: super: {
mbrola-voices = super.mbrola-voices.override {
# only ship with one voice per language
languages = [ "*1" ];
};
})
];

}

0 comments on commit 780f766

Please sign in to comment.