dotfiles/modules/common/repositories/notes.nix

15 lines
271 B
Nix
Raw Normal View History

{ config, ... }: {
2023-07-31 00:26:23 +00:00
# This is just a placeholder as I expect to interact with my notes in a
# certain location
home-manager.users.${config.user} = {
2022-05-02 03:39:50 +00:00
home.sessionVariables = {
2022-10-22 14:29:50 +00:00
NOTES_PATH = "${config.homePath}/dev/personal/notes/content";
2022-05-02 03:39:50 +00:00
};
};
}