Files
nix-config/home/dogar/common/optional/ghostty.nix

14 lines
223 B
Nix

{ config, ... }:
{
programs.ghostty = {
enable = true;
settings = {
theme = "catppuccin-mocha";
font-family = config.hostSpec.font;
font-size = 14;
initial-command = "tmux";
};
};
}