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

16 lines
284 B
Nix

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