mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-15 11:30:13 +00:00
11 lines
213 B
Nix
11 lines
213 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
hunspell
|
|
hunspellDicts.en_US
|
|
hunspellDicts.nb_NO
|
|
];
|
|
|
|
home.file.".config/enchant/hunspell/".source = "${pkgs.hunspellDicts.nb_NO}/share/hunspell/";
|
|
}
|