summaryrefslogtreecommitdiff
path: root/modules/ollama.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-18 21:04:00 +0100
committeradikro <adikro@disroot.org>2025-12-18 21:04:00 +0100
commite60410393cea222b16743a1a87f29c06b9b3543b (patch)
tree8a574048613f6b13024795bd710b824b40f5db18 /modules/ollama.nix
parentea3bf9c87ee72d6da5ea2316b229082c7fc9cdf6 (diff)
rewrite of system modules, hm modules are next
Diffstat (limited to 'modules/ollama.nix')
-rw-r--r--modules/ollama.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/ollama.nix b/modules/ollama.nix
deleted file mode 100644
index 0989419..0000000
--- a/modules/ollama.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ pkgs, ... }:
-{
- fileSystems."/models" = {
- device = "/home/ollama";
- fsType = "none";
- options = [ "bind" ];
- };
-
- services.ollama = {
- enable = true;
- package = pkgs.ollama-rocm;
- loadModels = [
- "deepseek-r1:14b"
- "qwen3:14b"
- "qwen3-coder:30b"
- ];
- syncModels = true;
- user = "ollama";
- models = "/models";
- };
-}