dotfiles/modules/editor/notes.nix
Noah Masur 417623965e refactor arguments to options
also change theme to colorscheme
2022-05-05 23:02:01 -04:00

12 lines
169 B
Nix

{ config, ... }: {
home-manager.users.${config.user} = {
home.sessionVariables = {
NOTES_PATH = "/home/${config.user}/dev/personal/notes";
};
};
}