nixos/modules/hunspell/default.nix

9 lines
133 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
hunspell
hunspellDicts.en_GB-ise
hunspellDicts.de_CH
];
}