Skip to content

OpenCode Flake 0.13.4

Choose a tag to compare

@github-actions github-actions released this 29 Sep 06:45
· 4 commits to master since this release

OpenCode Flake version 0.13.4

This release packages OpenCode v0.13.4 as a Nix flake.

Automated Update: This version was automatically updated using nix-update, ensuring all dependencies and hashes are correct.

Installation

# Run OpenCode directly
nix run github:AodhanHayter/opencode-flake

# Or install to your profile
nix profile install github:AodhanHayter/opencode-flake

Using in a flake

{
  inputs.opencode-flake.url = "github:AodhanHayter/opencode-flake";

  outputs = { self, nixpkgs, opencode-flake, ... }: {
    # Use in your outputs
    packages.x86_64-linux.opencode = opencode-flake.packages.x86_64-linux.default;
  };
}