init llm tooling
Some checks failed
/ check (push) Failing after 2m17s

This commit is contained in:
iofq 2026-02-26 21:58:32 -06:00
parent 802074f233
commit 58ae27d6d1
4 changed files with 119 additions and 12 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
pi
];
home.file."${config.xdg.configHome}/.pi" = {
source = ./config;
recursive = true;
};
}