feat: disable unused stuff

This commit is contained in:
uttarayan21
2025-08-09 15:26:00 +05:30
parent 0d4a856cdc
commit 292749e5c9
7 changed files with 48 additions and 38 deletions

View File

@@ -15,11 +15,11 @@
};
# package = pkgs.ik_llama;
};
# caddy = {
# virtualHosts."llama.ryu.darksailor.dev".extraConfig = ''
# import hetzner
# reverse_proxy localhost:${builtins.toString config.services.llama-cpp.port}
# '';
# };
caddy = {
virtualHosts."llama.ryu.darksailor.dev".extraConfig = ''
import hetzner
reverse_proxy localhost:${builtins.toString config.services.llama-cpp.port}
'';
};
};
}

View File

@@ -5,7 +5,7 @@
...
}: {
sops = {
secrets."minecraft/craftmine".owner = "minecraft";
secrets."minecraft/craftmine" = {};
templates = {
"craftmine.env".content = ''
CRAFTMINE_RCON_PASSWORD=${config.sops.placeholder."minecraft/craftmine"}
@@ -22,7 +22,7 @@
};
in {
minecraft-servers = {
enable = true;
enable = false;
eula = true;
openFirewall = true;
environmentFile = config.sops.templates."craftmine.env".path;
@@ -66,7 +66,7 @@
# };
craftmine-v2 = {
inherit whitelist;
enable = true;
enable = false;
jvmOpts = "-Xmx16G -Xms8G";
package = let
getJavaVersion = v: (builtins.getAttr "openjdk${toString v}" pkgs.javaPackages.compiler).headless;

View File

@@ -6,7 +6,7 @@
}: {
services = {
ollama = {
enable = true;
enable = false;
host = "0.0.0.0";
# loadModels = ["deepseek-r1:7b" "deepseek-r1:14b" "RobinBially/nomic-embed-text-8k" "qwen3:8b" "qwen3:14b"];
port = 11434;