dotfiles/modules/editor/notes.nix

12 lines
169 B
Nix
Raw Normal View History

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