nixfleet/hmModules/emacs/default.nix

10 lines
203 B
Nix

{
lib,
age,
...
}:
{
ccrEmacs.enable = true;
home.sessionVariables.EDITOR = lib.mkForce "emacsclient";
systemd.user.services.emacs.Service.EnvironmentFile = age.secrets.chatgpt-token.path;
}