17 lines
280 B
Nix
17 lines
280 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
settings = {
|
|
theme = "catppuccin-mocha";
|
|
font-size = 12;
|
|
};
|
|
};
|
|
|
|
home.sessionVariables.TERMINAL = lib.mkIf (config.terminal == "ghostty") "ghostty";
|
|
}
|