diff --git a/hosts/gunter/default.nix b/hosts/gunter/default.nix index ad08eb0..c86cb18 100644 --- a/hosts/gunter/default.nix +++ b/hosts/gunter/default.nix @@ -4,6 +4,7 @@ ./hardware-configuration.nix ./steamuser.nix ./nfs.nix + ./ollama.nix ../../system ../../home/gunter.nix ]; diff --git a/hosts/gunter/ollama.nix b/hosts/gunter/ollama.nix new file mode 100644 index 0000000..1c9299c --- /dev/null +++ b/hosts/gunter/ollama.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: { + services.ollama = { + enable = true; + acceleration = "cuda"; + }; +}