Configure Firecrawl with pi agent
This commit is contained in:
parent
5d8c839e3e
commit
6195d36497
3 changed files with 59 additions and 3 deletions
|
|
@ -1,4 +1,9 @@
|
|||
{ email }: { config, pkgs, ... }: {
|
||||
{ email }: { config, pkgs, ... }:
|
||||
|
||||
let
|
||||
piFirecrawl = pkgs.callPackage ../pkgs/pi-firecrawl.nix { };
|
||||
in
|
||||
{
|
||||
home.file.".clojure/deps.edn".source = ../config/clojure/deps.edn;
|
||||
|
||||
sops = {
|
||||
|
|
@ -94,6 +99,18 @@
|
|||
|
||||
pi.coding-agent = {
|
||||
enable = true;
|
||||
environment = {
|
||||
FIRECRAWL_API_KEY = config.sops.secrets.firecrawl_api_key.path;
|
||||
};
|
||||
settings = {
|
||||
defaultProvider = "openai-codex";
|
||||
defaultModel = "gpt-5.5";
|
||||
defaultThinkingLevel = "medium";
|
||||
|
||||
packages = [
|
||||
"${piFirecrawl}/lib/pi-packages/@firecrawl/pi-firecrawl"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
starship = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue