Select the types of activity you want to include in your feed.
1{ pkgs, ... }: 2{ 3 home.packages = 4 let 5 llm = pkgs.llm.withPlugins { 6 llm-ollama = true; 7 }; 8 in 9 [ llm ]; 10}