nixos/pkgsets/dict.nix

26 lines
334 B
Nix
Raw Normal View History

{
2023-09-11 20:23:04 +02:00
config,
pkgs,
...
}:
{
config.machine.pkgsets.dict.pkgs = with pkgs; [
translate-shell
(hunspellWithDicts (
with pkgs.hunspellDicts;
[
de-de
en-us
]
))
(aspellWithDicts (
d: with d; [
de
en
en-computers
en-science
]
))
];
}