variable "flake_ref" { type = string } variable "flake_sha" { type = string } job "matrix-heisenbridge" { datacenters = [ "homelab-1" ] type = "service" group "heisenbridge" { count = 1 volume "matrix-registrations" { type = "csi" source = "matrix-registrations" read_only = false attachment_mode = "file-system" access_mode = "multi-node-multi-writer" } restart { attempts = 5 delay = "5s" } network { mode = "bridge" } service { name = "matrix-heisenbridge" port = "9898" connect { sidecar_service {} } } task "heisenbridge" { driver = "docker" volume_mount { volume = "matrix-registrations" destination = "/var/lib/registrations" read_only = false } config { nix_flake_ref = "${var.flake_ref}#nixngSystems.heisenbridge.config.system.build.toplevel" nix_flake_sha = var.flake_sha entrypoint = [ "init" ] } resources { cpu = 128 memory = 128 } } } }