diff --git a/hosts/nixos/vps/containers.nix b/hosts/nixos/vps/containers.nix index dae9f5e..3eebb98 100644 --- a/hosts/nixos/vps/containers.nix +++ b/hosts/nixos/vps/containers.nix @@ -114,5 +114,17 @@ in dependsOn = [ "gotify" ]; autoStart = true; }; + + # OC Backend Scheduler + oc-scheduler = { + image = "localhost/oc-scheduler:v1"; + + extraOptions = [ + "--network=podman" + "--security-opt=no-new-privileges:true" + ]; + + autoStart = true; + }; }; }