nixos/pkgsets/dict.nix

12 lines
240 B
Nix
Raw Permalink Normal View History

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