This commit is contained in:
mjallen18
2025-12-14 20:33:39 -06:00
parent f09246dcba
commit 0012a019fc
8 changed files with 67 additions and 65 deletions

View File

@@ -131,7 +131,7 @@ in
pass-secret-service = lib.mkDefault enabled;
kdeconnect = {
enable = lib.mkDefault hasDestopEnvironment;
indicator = lib.mkDefault true;
indicator = lib.mkDefault hasDestopEnvironment;
};
};
}

View File

@@ -32,7 +32,7 @@ in
host = "0.0.0.0";
openFirewall = true;
model = "/media/nas/main/nix-app-data/llama-cpp/models/functionary-small-v3.2-GGUF/functionary-small-v3.2.Q4_0.gguf";
package = pkgs.llama-cpp-rocm;
package = pkgs.stable.llama-cpp-rocm;
extraFlags = [
"--n_gpu-layers"
"500"
@@ -46,7 +46,7 @@ in
services.open-webui = {
enable = true;
package = pkgs.open-webui;
package = pkgs.stable.open-webui;
host = "0.0.0.0";
port = 8888;
openFirewall = true;

View File

@@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
namespace,
...
}:
@@ -135,6 +136,7 @@ in
calibre-web = {
enable = true;
openFirewall = true;
package = pkgs.stable.calibre-web;
dataDir = cfg.webDir;
listen = {
ip = "0.0.0.0";