14 lines
224 B
Nix
14 lines
224 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ghostty = {
|
|
enable = false;
|
|
|
|
settings = {
|
|
theme = "catppuccin-mocha";
|
|
font-family = config.hostSpec.font;
|
|
font-size = 14;
|
|
initial-command = "tmux";
|
|
};
|
|
};
|
|
}
|