summary refs log tree commit diff stats
path: root/ollama/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ollama/shell.nix')
-rw-r--r--ollama/shell.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/ollama/shell.nix b/ollama/shell.nix
new file mode 100644
index 000000000..e052a86de
--- /dev/null
+++ b/ollama/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? (import <nixpkgs> {}).pkgs }:
+with pkgs;
+mkShell {
+  buildInputs = [
+    python312Packages.ollama
+  ];
+}