nixos/modules/hunspell/default.nix

9 lines
133 B
Nix
Raw Normal View History

2022-09-01 09:10:56 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
hunspell
hunspellDicts.en_GB-ise
hunspellDicts.de_CH
];
}