chore: install ai stuff(ollama) & games(steam) only on idols-ai

This commit is contained in:
Ryan Yin
2025-07-30 10:46:24 +08:00
parent 87229f9a31
commit 4d218e314c
6 changed files with 1 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
pkgs,
nixpkgs-ollama,
...
}: let
pkgs-ollama = import nixpkgs-ollama {
inherit (pkgs) system;
# To use cuda, we need to allow the installation of non-free software
config.allowUnfree = true;
};
in {
services.ollama = rec {
enable = true;
package = pkgs-ollama.ollama;
acceleration = "cuda";
host = "0.0.0.0";
port = 11434;
home = "/var/lib/ollama";
models = "${home}/models";
};
}