yuki: init neko

This commit is contained in:
notohh 2023-09-18 18:27:49 -04:00
parent 6e595b86d7
commit f4d7a86aa4
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 21 additions and 0 deletions

View file

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

View file

@ -0,0 +1,20 @@
_: {
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";
};
};
}