uses proper home config for ghostty

This commit is contained in:
kenji
2025-12-23 21:02:43 +00:00
parent 69b3d42f9a
commit 7ebc2f366b
+8 -3
View File
@@ -1,5 +1,10 @@
{pkgs, ...}: {
home.packages = [
ghostty
];
programs.ghostty = {
enable = true;
package =
if pkgs.stdenv.isDarwin
then pkgs.ghostty-bin
else pkgs.ghostty;
enableFishIntegration = true;
};
}