about summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-28 14:40:39 +0200
committerSoispha <soispha@vhack.eu>2023-08-28 14:40:39 +0200
commit310e406dcb6c5603950b5432bcd8a6288198ec41 (patch)
tree49bcc3e60af05616024bac72cfbb08295b681bf5 /hm
parentPerf(flake/packages/nvim): Use list merge feature of the merge function (diff)
downloadnixos-config-310e406dcb6c5603950b5432bcd8a6288198ec41.tar.gz
nixos-config-310e406dcb6c5603950b5432bcd8a6288198ec41.zip
Fix(hm/conf/nvim/plugins/neorg): Add entry to modules, to generate them
Diffstat (limited to '')
-rw-r--r--hm/soispha/conf/nvim/plugins/neorg/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/hm/soispha/conf/nvim/plugins/neorg/default.nix b/hm/soispha/conf/nvim/plugins/neorg/default.nix
index 74ab332d..c05570df 100644
--- a/hm/soispha/conf/nvim/plugins/neorg/default.nix
+++ b/hm/soispha/conf/nvim/plugins/neorg/default.nix
@@ -7,7 +7,7 @@
       "core.defaults" = {
         __empty = null;
       };
-      "core.metagen".config = {
+      "core.esupports.metagen".config = {
         type = "auto";
       };
       "core.journal".config = {
@@ -29,15 +29,21 @@
       "core.completion".config = {
         engine = "nvim-cmp";
       };
-      "core.concealer".config = {};
+      "core.concealer".config = {
+        __empty = null;
+      };
       "core.dirman".config = {
         workspaces = {
           general = "~/notes/general";
           journal = "~/notes/journal";
         };
       };
-      "core.export".config = {};
-      "core.ui.calendar".config = {};
+      "core.export".config = {
+        __empty = null;
+      };
+      "core.ui.calendar".config = {
+        __empty = null;
+      };
     };
   };
 }