21 lines
401 B
Nix
21 lines
401 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 = false;
|
|
enableBashIntegration = false;
|
|
|
|
settings = {
|
|
theme = "Catppuccin Macchiato";
|
|
background-opacity = "0.95";
|
|
};
|
|
};
|
|
}
|