Add llm-workflow-engine and configure for Emacs

This commit is contained in:
Andrea Ciceri 2023-10-01 02:59:39 +02:00
parent b1b7b24717
commit 473b4e7580
No known key found for this signature in database
7 changed files with 307 additions and 44 deletions

View file

@ -1,4 +1,13 @@
{lib, ...}: {
{
lib,
age,
pkgs,
...
}: {
ccrEmacs.enable = true;
home.sessionVariables.EDITOR = lib.mkForce "emacsclient";
systemd.user.services.emacs.Service.EnvironmentFile = age.secrets.chatgpt-token.path;
home.packages = [
pkgs.llm-workflow-engine
];
}