dotfiles/modules/editor/notes.nix

11 lines
174 B
Nix
Raw Normal View History

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