12 lines
175 B
Nix
Raw Normal View History

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