16 lines
329 B
Nix
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"; }; };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|