summaryrefslogtreecommitdiff
path: root/users/kassouni/ghostty.nix
blob: d70a194b6b3e9d520d340484e403bdcc6612c2f4 (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 = 24;
      window-decoration = "none";
    };
  };
}