1769121798

This commit is contained in:
2026-01-22 15:43:18 -07:00
parent 3a3429f79f
commit 5d0a48fab6
5 changed files with 74 additions and 13 deletions

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

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
enableBashIntegration = true;
settings = {
theme = "Catppuccin Macchiato";
background-opacity = "0.95";
};
};
}