mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
15 lines
271 B
Nix
15 lines
271 B
Nix
{ config, ... }: {
|
|
|
|
# This is just a placeholder as I expect to interact with my notes in a
|
|
# certain location
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.sessionVariables = {
|
|
NOTES_PATH = "${config.homePath}/dev/personal/notes/content";
|
|
};
|
|
|
|
};
|
|
|
|
}
|