nixos/home/programs/nvim/plugins/neorg.nix
2024-07-05 09:20:58 +02:00

16 lines
329 B
Nix

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