update system

This commit is contained in:
2025-09-15 10:40:21 +02:00
parent 6145732891
commit 6d296224ce
11 changed files with 154 additions and 76 deletions

View File

@@ -101,6 +101,28 @@
security.tpm2.enable = true;
users.defaultUserShell = pkgs.zsh;
networking.hosts = {
"127.0.0.1:57461" = [ "ai.local" ];
};
services.ollama = {
enable = true;
package = pkgs.ollama.override {
config.cudaSupport = true;
config.rocmSupport = false;
};
acceleration = "cuda";
};
services.open-webui = {
enable = true;
port = 57461;
environment = {
ANONYMIZED_TELEMETRY = "False";
DO_NOT_TRACK = "True";
SCARF_NO_ANALYTICS = "True";
WEBUI_AUTH = "False";
};
};
services.openssh = {
enable = true;
settings = {

View File

@@ -13,6 +13,7 @@
packages = with pkgs; [
blueman
kdePackages.okular
bitbox
];
};
systemd.user.services = {