nixos-config/homes/tina/logseq.nix

28 lines
437 B
Nix
Raw Permalink Normal View History

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
};
};
}