Compare commits

..

No commits in common. "da9b32dbd500186fbcacec3b6e2e4fc6f79eb6c9" and "0327f33d34e9ffde6009d39844fcd6c9b47ac6ba" have entirely different histories.

7 changed files with 7 additions and 48 deletions

View file

@ -10,7 +10,5 @@
./dashdot.nix
./grafana.nix
./vaultwarden.nix
./atticd.nix
./conduit.nix
];
}

View file

@ -58,7 +58,7 @@
uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}];
gotify.loadBalancer.servers = [{url = "http://100.87.54.48:3000";}];
neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}];
conduit.loadBalancer.servers = [{url = "http://100.121.201.47:6167";}];
conduit.loadBalancer.servers = [{url = "http://100.110.140.130:6167";}];
};
};
};

View file

@ -1,19 +1,14 @@
{lib, ...}: {
_: {
networking.firewall.allowedTCPPorts = [6167 8448];
services.matrix-conduit = {
enable = true;
settings = {
global = {
address = "0.0.0.0";
server_name = "matrix.notohh.dev";
server_name = "forsen";
allow_registration = true;
allow_federation = false;
allow_federation = true;
allow_encryption = true;
log = "warn";
max_concurrent_requests = 100;
max_request_size = 20000000;
database_backend = "rocksdb";
enable_lightning_bolt = false;
trusted_servers = ["matrix.org"];
};
};

View file

@ -8,6 +8,6 @@
./dashdot.nix
./jellyfin.nix
./neko.nix
./vikunja.nix
./conduit.nix
];
}

View file

@ -40,11 +40,6 @@ _: {
entrypoints = ["web"];
service = "jellyseerr";
};
vikunja-frontend = {
rule = "Host(`vikunja.home.arpa`)";
entrypoints = ["web"];
service = "vikunja-frontend";
};
};
services = {
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
@ -53,7 +48,6 @@ _: {
searxng.loadBalancer.servers = [{url = "http://localhost:8100";}];
jellyfin.loadBalancer.servers = [{url = "http://localhost:8096";}];
jellyseerr.loadBalancer.servers = [{url = "http://localhost:5055";}];
vikunja-frontend.loadBalancer.servers = [{url = "http://localhost:6789";}];
};
};
};

View file

@ -1,26 +0,0 @@
{pkgs, ...}: {
networking.firewall.allowedTCPPorts = [3456 6789];
virtualisation.oci-containers.containers.vikunja = {
image = "vikunja/api";
environment = {
VIKUNJA_SERVICE_FRONTENDURL = "vikunja.home.arpa";
};
ports = [
"3456:3456"
];
volumes = [
"/home/notoh/docker/vikunja/files:/app/vikunja/files"
];
};
virtualisation.oci-containers.containers.vikunja-frontend = {
image = "vikunja/frontend";
ports = [
"6789:80"
];
environment = {
VIKUNJA_API_URL = "http://192.168.1.36:3456/api/v1";
};
};
}

View file

@ -24,10 +24,8 @@
sansSerif = ["Noto Sans" "Twitter Color Emoji"];
emoji = ["Twitter Color Emoji"];
};
hinting = {
enable = true;
style = "full";
};
hinting.style = "full";
};
};
}