dotfiles/modules/common/repositories/notes.nix

12 lines
175 B
Nix
Raw Normal View History

{ config, ... }: {
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
};
};
}