Skip to content

Home Ops Docs

I have documented here information relating to my personal cloud. Even things loosely related such as keyboard, camera specs. The environment combines ordinary personal devices with a small collection of server hardware. Most services run as containers on virtual machines, storage lives on a dedicated NAS, and a declarative home-ops repository keeps the intended state reproducible.

    flowchart LR
  internet(("Internet"))

  subgraph home["HOME ENVIRONMENT"]
    direction LR
    clients(["Personal devices"])
    edge["Network edge<br/>DNS · ingress · Wi-Fi"]
    compute["Proxmox compute<br/>VMs · containers"]
    services["Self-hosted<br/>services"]
    storage[("TrueNAS storage<br/>ZFS · backups")]
    clients <--> edge
    edge <--> compute
    compute --> services
    services <--> storage
  end

  internet <--> edge

  classDef external fill:#18201d,stroke:#718078,color:#dbe8e1;
  classDef client fill:#282416,stroke:#c6a95b,color:#f2e4b8;
  classDef network fill:#14242c,stroke:#5ca8c7,color:#c9eafa;
  classDef compute fill:#211b32,stroke:#9c82d4,color:#e3d9fa;
  classDef service fill:#14251e,stroke:#61ad87,color:#d0f0df;
  classDef storage fill:#10271e,stroke:#58b184,color:#c7efda;
  class internet external;
  class clients client;
  class edge network;
  class compute compute;
  class services service;
  class storage storage;