Compare commits

..

No commits in common. "8631895f286ef9ddf7212103d51670dffec56190" and "6e595b86d776c5ce70228b9c0debf4ea65ca1677" have entirely different histories.

3 changed files with 0 additions and 29 deletions

View file

@ -32,17 +32,9 @@
tls.domains = [{main = "*.notohh.dev";}];
tls.certresolver = "production";
};
neko = {
rule = "Host(`neko.notohh.dev`)";
entrypoints = ["websecure"];
service = "neko";
tls.domains = [{main = "neko.notohh.dev";}];
tls.certresolver = "production";
};
};
services = {
uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}];
neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}];
};
};
};

View file

@ -7,6 +7,5 @@
./homarr.nix
./dashdot.nix
./jellyfin.nix
./neko.nix
];
}

View file

@ -1,20 +0,0 @@
_: {
networking.firewall.allowedTCPPorts = [8080];
networking.firewall.allowedUDPPorts = [52000 52100];
virtualisation.oci-containers.containers.neko = {
image = "m1k1o/neko:firefox";
ports = [
"8080:8080"
"52000-52100:52000-52100/udp"
];
environment = {
NEKO_SCREEN = "1920x1080@60";
NEKO_PASSWORD = "forsen";
NEKO_EPR = "52000-52100";
NEKO_NAT1TO1 = "100.110.140.130";
NEKO_BIND = "0.0.0.0:8080";
NEKO_CONTROL_PROTECTION = "true";
NEKO_VIDEO_CODEC = "h264";
};
};
}