{ pkgs, ... }: { home.packages = with pkgs; [ vimPlugins.neorg ]; programs.nixvim.plugins = { neorg = { enable = true; modules = { "core.defaults" = { __empty = null; }; "core.dirman" = { config = { workspaces = { home = "~/nextcloud/neorg"; }; }; }; "core.concealer" = { config.folds = false; }; "core.export" = { __empty = null; }; "core.ui.calendar" = { __empty = null; }; "core.integrations.telescope" = { __empty = null; }; }; }; }; programs.nixvim.keymaps = [ { key = "nh"; action = "Telescope neorg search_headings"; options.desc = "Neorg Search Headings"; } { key = "nf"; action = "Telescope neorg find_norg_files"; options.desc = "Neorg Search Files"; } ]; }