commit | 8ebc2fb51e8fec0985a6f472d3f5e8986f8ed84c | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Mon Oct 31 00:12:23 2022 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Mon Oct 31 00:12:23 2022 +0000 |
tree | 99e701157b9772cfd59be329e49f6c9d64e8e7e4 | |
parent | 010e78d4c7cee71f44817c3b4b7cbb890101746d [diff] |
Install some aspell dictionaries
diff --git a/modules/dictionaries.nix b/modules/dictionaries.nix new file mode 100644 index 0000000..1fe561f --- /dev/null +++ b/modules/dictionaries.nix
@@ -0,0 +1,8 @@ +{pkgs,...}: { + config.environment.systemPackages = with pkgs.aspellDicts; [ + pkgs.aspell + en + en-computers + en-science + ]; +}