updated to 25.11

This commit is contained in:
2025-12-25 17:22:10 +01:00
parent a78d66fbd3
commit e2195ba03c
5 changed files with 33 additions and 17 deletions

View File

@@ -1,9 +1,9 @@
{config, pkgs-unstable, ... }:
{config, pkgs, ... }:
{
services.ollama = {
enable = true;
package = pkgs-unstable.ollama;
package = pkgs.ollama;
acceleration = "cuda";
environmentVariables = {
OLLAMA_CONTEXT_LENGTH="32000";
@@ -15,7 +15,7 @@
};
services.open-webui = {
package = pkgs-unstable.open-webui;
package = pkgs.open-webui;
enable = true;
port = 8081;
environment = {

View File

@@ -0,0 +1,8 @@
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
}