18 lines
294 B
Nix
18 lines
294 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh.shellAliases = {
|
|
llm = ''
|
|
f() { llm "$@" | tee >(cat) | glow --style=dark --width=100; unset -f f; }; f'';
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# python312Packages.llm
|
|
glow
|
|
|
|
(llm.withPlugins { llm-openai-plugin = true; })
|
|
|
|
];
|
|
|
|
}
|