dotfiles/modules/editor/notes.nix

12 lines
169 B
Nix
Raw Normal View History

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