users/foo-dogsquared/programs/nixvim: update note-taking setup

This commit is contained in:
Gabriel Arazas 2024-02-25 17:50:19 +08:00
parent c65674c742
commit 1e0a2875c8
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, helpers, ... }:
{ config, lib, pkgs, helpers, hmConfig, ... }:
{
# The main star of the show.
@ -28,7 +28,9 @@
# Manage your note workspaces.
"core.dirman".config = {
workspaces = {
personal = "~/library/notes";
personal = "${hmConfig.home.homeDirectory}/library/notes";
work = "${hmConfig.xdg.userDirs.documents}/Notes";
wiki = "${hmConfig.xdg.userDirs.documents}/Wiki";
};
};
}