Files
nixos/apps/ghostty/home.nix
T
2025-12-23 21:02:43 +00:00

11 lines
195 B
Nix

{pkgs, ...}: {
programs.ghostty = {
enable = true;
package =
if pkgs.stdenv.isDarwin
then pkgs.ghostty-bin
else pkgs.ghostty;
enableFishIntegration = true;
};
}