Ghostty: Difference between revisions
Appearance
Add terminal category |
m Link to Adding programs to PATH Tags: Mobile edit Mobile web edit Visual edit |
||
| Line 16: | Line 16: | ||
== Installation == | == Installation == | ||
[[Adding programs to PATH|Install]] the <code>ghostty</code> package on Linux or the <code>ghostty-bin</code> package on Darwin/macOS. If you're configuring Ghostty with Home Manager, you don't have to install the package manually. | |||
== Configuring Ghostty with Home Manager == | == Configuring Ghostty with Home Manager == | ||
Latest revision as of 12:53, 8 February 2026
Ghostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration.[1]
Installation
Install the ghostty package on Linux or the ghostty-bin package on Darwin/macOS. If you're configuring Ghostty with Home Manager, you don't have to install the package manually.
Configuring Ghostty with Home Manager
A quick example on how to configure and install Ghostty with Home Manager, full set of options can be found here.
❄︎ home.nix
{ pkgs, ... }: {
programs.ghostty = {
enable = true;
package = if pkgs.stdenv.isDarwin then pkgs.ghostty-bin else pkgs.ghostty;
# Enable for whichever shell you plan to use!
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
settings = {
theme = "Abernathy";
background-opacity = "0.95";
};
};
}
