blob: cbfaee148d2bb74cd7ea782567984fd625758612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, ... }:
{
programs.ghostty = {
enable = true;
settings = {
theme = "Ayu";
font-family = config.theme.font.family;
font-size = config.theme.font.size;
window-decoration = "none";
};
};
}
|