Skip to content

OpenCode Flake github-v1.2.16

Latest

Choose a tag to compare

@github-actions github-actions released this 18 Feb 19:14

OpenCode Flake version github-v1.2.16

This release packages OpenCode vgithub-v1.2.16 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;
  };
}