dotfiles/modules/common/repositories/notes.nix
2023-07-30 20:26:23 -04:00

15 lines
271 B
Nix

{ config, ... }: {
# This is just a placeholder as I expect to interact with my notes in a
# certain location
home-manager.users.${config.user} = {
home.sessionVariables = {
NOTES_PATH = "${config.homePath}/dev/personal/notes/content";
};
};
}