Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion docs/install/binary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,32 @@ process as installing many typical macOS applications.

A [Homebrew cask](https://formulae.brew.sh/cask/ghostty) is available and maintained by the Ghostty community.

```sh
```{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";

ghostty = {
url = "github:ghostty-org/ghostty";
};
};

outputs = {
nixpkgs,
ghostty,
...
}: {
nixosConfigurations.mysystem = nixpkgs.lib.nixosSystem {
modules = [
({ pkgs, ... }: {
environment.systemPackages = [
ghostty.packages.${pkgs.stdenv.hostPlatform.system}.default
];
})
];
};
};
}

brew install --cask ghostty
```

Expand Down