dotfiles/modules/editor/notes.nix

12 lines
167 B
Nix
Raw Normal View History

{ config, ... }: {
home-manager.users.${config.user} = {
2022-05-01 23:39:50 -04:00
home.sessionVariables = {
NOTES_PATH = "${config.homePath}/dev/personal/notes";
2022-05-01 23:39:50 -04:00
};
};
}