This commit is contained in:
2026-02-16 15:22:05 -07:00
parent b65e4cbdae
commit 144da5d7d7
4 changed files with 13 additions and 5 deletions

View File

@@ -1,9 +1,13 @@
{ pkgs, lib, ... }:
let
ghosttyStub = (pkgs.runCommand "ghostty-stub" { } "mkdir -p $out/bin")
// { meta.mainProgram = "ghostty"; };
in
{
programs.ghostty = {
enable = true;
package = lib.mkForce (pkgs.runCommand "ghostty-stub" { } "mkdir -p $out");
package = lib.mkForce ghosttyStub;
enableZshIntegration = true;