codex-lb and fira-code

This commit is contained in:
2026-05-12 11:57:38 +02:00
parent 5d5f98ad90
commit 1841fe3a41
5 changed files with 37 additions and 13 deletions

View File

@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
virtualisation.oci-containers.containers.codex-lb = {
image = "ghcr.io/soju06/codex-lb:latest";
autoStart = true;
ports = [
"2455:2455"
"1455:1455"
];
volumes = [
"codex-lb-data:/var/lib/codex-lb"
];
};
networking.firewall.allowedTCPPorts = [
2455
1455
];
}