This commit is contained in:
2026-02-16 15:18:42 -07:00
parent 1a03da12c3
commit b65e4cbdae
7 changed files with 140 additions and 1 deletions

15
modules/home/ghostty.nix Normal file
View File

@@ -0,0 +1,15 @@
{ 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";
};
};
}