diff --git a/hosts/t480/configuration.nix b/hosts/t480/configuration.nix index 0183b98e..70d39844 100644 --- a/hosts/t480/configuration.nix +++ b/hosts/t480/configuration.nix @@ -52,6 +52,7 @@ in ./modules/cron.nix ./modules/neomutt.nix ./modules/newsboat + ./modules/ollama.nix ./modules/wiki.nix ]; diff --git a/hosts/t480/modules/ollama.nix b/hosts/t480/modules/ollama.nix new file mode 100644 index 00000000..0b37ce99 --- /dev/null +++ b/hosts/t480/modules/ollama.nix @@ -0,0 +1,10 @@ +{ + services = { + ollama = { + enable = true; + acceleration = "rocm"; + }; + + open-webui.enable = true; + }; +}