10 lines
245 B
Nix
10 lines
245 B
Nix
|
{ 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 ] ))
|
||
|
];
|
||
|
}
|