dotfiles/modules/editor/notes.nix

12 lines
167 B
Nix
Raw Normal View History

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