2021-04-23 22:05:27 +02:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
home.sessionPath = [
|
|
|
|
"${config.xdg.configHome}/emacs/bin"
|
|
|
|
"${config.home.homeDirectory}/.cargo/bin"
|
2021-05-04 01:27:21 +02:00
|
|
|
"${config.home.homeDirectory}/.local/bin"
|
2021-04-23 22:05:27 +02:00
|
|
|
];
|
2021-09-23 16:36:32 +02:00
|
|
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
EDITOR = "emacsclient -t";
|
|
|
|
};
|
2021-04-23 22:05:27 +02:00
|
|
|
}
|