11 lines
195 B
Nix
11 lines
195 B
Nix
{pkgs, ...}: {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package =
|
|
if pkgs.stdenv.isDarwin
|
|
then pkgs.ghostty-bin
|
|
else pkgs.ghostty;
|
|
enableFishIntegration = true;
|
|
};
|
|
}
|