2024-08-29 03:26:04 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-05-23 16:04:36 +02:00
|
|
|
with pkgs;
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
config = mkIf config.gui.enable {
|
|
|
|
home.packages = [
|
|
|
|
logseq
|
|
|
|
];
|
2024-08-29 03:26:04 +02:00
|
|
|
home.file.".config/Logseq/Preferences".source =
|
|
|
|
(pkgs.formats.json { }).generate "LogseqPreferences.json"
|
|
|
|
{
|
|
|
|
spellcheck = {
|
|
|
|
dictionaries = [
|
|
|
|
"en-US"
|
|
|
|
"de-DE"
|
|
|
|
];
|
|
|
|
dictionary = "";
|
|
|
|
};
|
2024-05-23 16:04:36 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|