11 lines
227 B
Nix
11 lines
227 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 ];
|
|
}
|