Backfill in-progress. Some lexicons and records may be missing or incomplete.

dev.ocbwoy3.dotsyncd.refsDependency

ocbwoy3.dev

Documentation

distro object

A specific Linux distribution

Properties

id string Required

The distro ID identified in /etc/os-release, such as nixos, cachyos, etc.

View raw schema
{
  "type": "object",
  "required": [
    "id"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The distro ID identified in /etc/os-release, such as nixos, cachyos, etc."
    }
  },
  "description": "A specific Linux distribution"
}
hyprland object

A specific Hyprland version

Properties

version string Required

Must be semver

View raw schema
{
  "type": "object",
  "required": [
    "version"
  ],
  "properties": {
    "version": {
      "type": "string",
      "description": "Must be semver"
    }
  },
  "description": "A specific Hyprland version"
}
tangledRepo object

A repo from Tangled cloned into a specific directory

Properties

dir string Required

The location of the cloned git repo. Must be a valid POSIX (not NT) path. Example: /home/ocbwoy3/config

owner string did Required

The owner of the repo. In the case of https://tangled.sh/@ocbwoy3.dev/nix, owner would be the DID of @ocbwoy3.dev

repo string Required

The repository name

View raw schema
{
  "type": "object",
  "required": [
    "owner",
    "repo",
    "dir"
  ],
  "properties": {
    "dir": {
      "type": "string",
      "description": "The location of the cloned git repo. Must be a valid POSIX (not NT) path. Example: /home/ocbwoy3/config"
    },
    "repo": {
      "type": "string",
      "description": "The repository name"
    },
    "owner": {
      "type": "string",
      "format": "did",
      "description": "The owner of the repo. In the case of https://tangled.sh/@ocbwoy3.dev/nix, owner would be the DID of @ocbwoy3.dev"
    }
  },
  "description": "A repo from Tangled cloned into a specific directory"
}

Lexicon Garden

@