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