Update Lix tracked version; disable LanguageTool ngrams
This commit is contained in:
parent
f0dd52c9b6
commit
00b2923528
12
flake.lock
12
flake.lock
|
@ -179,16 +179,16 @@
|
|||
"lix": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1714955862,
|
||||
"narHash": "sha256-REWlo2RYHfJkxnmZTEJu3Cd/2VM+wjjpPy7Xi4BdDTQ=",
|
||||
"ref": "refs/tags/2.90-beta.1",
|
||||
"rev": "b6799ab0374a8e1907a48915d3187e07da41d88c",
|
||||
"revCount": 15501,
|
||||
"lastModified": 1718590005,
|
||||
"narHash": "sha256-fiWc1ZyMlTXXSjcmoEQ+NHhIgtcImPHszbOu5c515cU=",
|
||||
"ref": "release-2.90",
|
||||
"rev": "98d0249d5c7f5dcc1d2436c4829f073fca668f80",
|
||||
"revCount": 15785,
|
||||
"type": "git",
|
||||
"url": "https://git@git.lix.systems/lix-project/lix"
|
||||
},
|
||||
"original": {
|
||||
"ref": "refs/tags/2.90-beta.1",
|
||||
"ref": "release-2.90",
|
||||
"type": "git",
|
||||
"url": "https://git@git.lix.systems/lix-project/lix"
|
||||
}
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
|
||||
# Replace Nix with Lix: https://lix.systems/
|
||||
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=release-2.90";
|
||||
#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";
|
||||
flake = false;
|
||||
};
|
||||
lix-module = {
|
||||
|
|
|
@ -40,7 +40,7 @@ in
|
|||
social.enable = true;
|
||||
writing = {
|
||||
enable = true;
|
||||
ngrams.enable = true;
|
||||
ngrams.enable = false;
|
||||
};
|
||||
};
|
||||
ui = {
|
||||
|
|
|
@ -12,6 +12,7 @@ in
|
|||
options = {
|
||||
host.apps.writing = {
|
||||
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 (
|
||||
lib.mdDoc "Enables ngrams for improved grammar detection (warning: results in an 8GB+ download)."
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue