add logseq properly
This commit is contained in:
parent
e2c05db404
commit
240ef234a4
4 changed files with 22 additions and 6 deletions
|
@ -2,8 +2,9 @@
|
|||
imports = [
|
||||
./development.nix
|
||||
./graphics.nix
|
||||
./logseq.nix
|
||||
./nextcloud.nix
|
||||
./social.nix
|
||||
./packages.nix
|
||||
./social.nix
|
||||
];
|
||||
}
|
||||
|
|
18
nixos/homes/palo/packages/logseq.nix
Normal file
18
nixos/homes/palo/packages/logseq.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
with pkgs;
|
||||
with lib;
|
||||
{
|
||||
config = mkIf config.gui.enable {
|
||||
home.packages = [
|
||||
unstable.logseq
|
||||
];
|
||||
home.file.".config/Logseq/Preferences".source = (pkgs.formats.json { }).generate "LogseqPreferences.json"
|
||||
{
|
||||
spellcheck = {
|
||||
dictionaries = [ "en-US" "de-DE" ];
|
||||
dictionary = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
|
@ -5,8 +5,6 @@ with lib;
|
|||
|
||||
config = mkIf config.gui.enable {
|
||||
|
||||
|
||||
|
||||
# ¯\_(ツ)_/¯
|
||||
home.packages = [
|
||||
|
||||
|
@ -43,7 +41,6 @@ with lib;
|
|||
rbw
|
||||
|
||||
unstable.trilium-desktop # old (use logseq now)
|
||||
unstable.logseq
|
||||
|
||||
nginx-config-formatter
|
||||
|
||||
|
|
Loading…
Reference in a new issue