2019-10-23 03:44:17 +02:00
|
|
|
{
|
2023-09-11 20:23:04 +02:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
2024-11-20 20:32:38 +01:00
|
|
|
}:
|
|
|
|
{
|
2019-10-23 03:44:17 +02:00
|
|
|
config.machine.pkgsets.dict.pkgs = with pkgs; [
|
|
|
|
translate-shell
|
2024-11-20 20:32:38 +01:00
|
|
|
(hunspellWithDicts (
|
|
|
|
with pkgs.hunspellDicts;
|
|
|
|
[
|
|
|
|
de-de
|
|
|
|
en-us
|
|
|
|
]
|
|
|
|
))
|
|
|
|
(aspellWithDicts (
|
|
|
|
d: with d; [
|
|
|
|
de
|
|
|
|
en
|
|
|
|
en-computers
|
|
|
|
en-science
|
|
|
|
]
|
|
|
|
))
|
2019-10-23 03:44:17 +02:00
|
|
|
];
|
|
|
|
}
|