summary refs log tree commit diff stats
path: root/ollama/shell.nix
blob: e052a86dee7b58117d6c05713529cb89fc975076 (plain) (blame)
1
2
3
4
5
6
7
{ pkgs ? (import <nixpkgs> {}).pkgs }:
with pkgs;
mkShell {
  buildInputs = [
    python312Packages.ollama
  ];
}