1
0
Fork 0

Update Lix tracked version; disable LanguageTool ngrams

This commit is contained in:
Aires 2024-06-20 09:47:11 -04:00
parent f0dd52c9b6
commit 00b2923528
4 changed files with 10 additions and 9 deletions

View file

@ -179,16 +179,16 @@
"lix": { "lix": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1714955862, "lastModified": 1718590005,
"narHash": "sha256-REWlo2RYHfJkxnmZTEJu3Cd/2VM+wjjpPy7Xi4BdDTQ=", "narHash": "sha256-fiWc1ZyMlTXXSjcmoEQ+NHhIgtcImPHszbOu5c515cU=",
"ref": "refs/tags/2.90-beta.1", "ref": "release-2.90",
"rev": "b6799ab0374a8e1907a48915d3187e07da41d88c", "rev": "98d0249d5c7f5dcc1d2436c4829f073fca668f80",
"revCount": 15501, "revCount": 15785,
"type": "git", "type": "git",
"url": "https://git@git.lix.systems/lix-project/lix" "url": "https://git@git.lix.systems/lix-project/lix"
}, },
"original": { "original": {
"ref": "refs/tags/2.90-beta.1", "ref": "release-2.90",
"type": "git", "type": "git",
"url": "https://git@git.lix.systems/lix-project/lix" "url": "https://git@git.lix.systems/lix-project/lix"
} }

View file

@ -9,8 +9,8 @@
# Replace Nix with Lix: https://lix.systems/ # Replace Nix with Lix: https://lix.systems/
lix = { lix = {
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1"; #url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
#url = "git+https://git@git.lix.systems/lix-project/lix?ref=release-2.90"; url = "git+https://git@git.lix.systems/lix-project/lix?ref=release-2.90";
flake = false; flake = false;
}; };
lix-module = { lix-module = {

View file

@ -40,7 +40,7 @@ in
social.enable = true; social.enable = true;
writing = { writing = {
enable = true; enable = true;
ngrams.enable = true; ngrams.enable = false;
}; };
}; };
ui = { ui = {

View file

@ -12,6 +12,7 @@ in
options = { options = {
host.apps.writing = { host.apps.writing = {
enable = lib.mkEnableOption (lib.mdDoc "Enables writing and editing tools"); enable = lib.mkEnableOption (lib.mdDoc "Enables writing and editing tools");
# WARNING: Ngrams package requires an excessive amount of memory. Troubleshoot before re-enabling
ngrams.enable = lib.mkEnableOption ( ngrams.enable = lib.mkEnableOption (
lib.mdDoc "Enables ngrams for improved grammar detection (warning: results in an 8GB+ download)." lib.mdDoc "Enables ngrams for improved grammar detection (warning: results in an 8GB+ download)."
); );