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-flakeUsing 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;
};
}