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