mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
11 lines
174 B
Nix
11 lines
174 B
Nix
{ identity, ... }: {
|
|
home-manager.users.${identity.user} = {
|
|
|
|
home.sessionVariables = {
|
|
NOTES_PATH = "/home/${identity.user}/dev/personal/notes";
|
|
};
|
|
|
|
};
|
|
|
|
}
|