Compare commits

...

2 commits

Author SHA1 Message Date
d5922109ae hosts/main: enable mariadb 2025-04-12 12:43:31 +02:00
f7c217b26c hosts: set system.stateVersion to 24.11
Yes, I read all changes that it would do
using nix-diff
2025-04-12 12:32:57 +02:00
2 changed files with 8 additions and 2 deletions

View file

@ -81,12 +81,18 @@
package = pkgs.unstable.ollama; package = pkgs.unstable.ollama;
host = "0.0.0.0"; host = "0.0.0.0";
}; };
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
environment.sessionVariables = { environment.sessionVariables = {
OLLAMA_HOST = "127.0.0.1:${builtins.toString config.services.ollama.port}"; OLLAMA_HOST = "127.0.0.1:${builtins.toString config.services.ollama.port}";
}; };
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
system.stateVersion = "23.05"; system.stateVersion = "24.11";
}; };
} }

View file

@ -54,7 +54,7 @@
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
system.stateVersion = "23.11"; system.stateVersion = "24.11";
}; };
} }