mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
12 lines
175 B
Nix
12 lines
175 B
Nix
{ config, ... }: {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.sessionVariables = {
|
|
NOTES_PATH = "${config.homePath}/dev/personal/notes/content";
|
|
};
|
|
|
|
};
|
|
|
|
}
|