Files
dart/modules/home/ghostty.nix
2026-02-16 15:22:05 -07:00

20 lines
365 B
Nix

{ pkgs, lib, ... }:
let
ghosttyStub = (pkgs.runCommand "ghostty-stub" { } "mkdir -p $out/bin")
// { meta.mainProgram = "ghostty"; };
in
{
programs.ghostty = {
enable = true;
package = lib.mkForce ghosttyStub;
enableZshIntegration = true;
settings = {
theme = "Catppuccin Macchiato";
background-opacity = "0.95";
};
};
}