aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/ghostty.nix
blob: 10b366f4dd2beacf331b780bb2a9b187b212788f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  flake.modules.homeManager.ghostty =
    { ... }:
    {
      programs.ghostty = {
        enable = true;
        settings = {
          font-family = "JetBrains Mono";
          font-size = 13;
          font-thicken = true;
          theme = "Gruvbox Dark";
          background = "#000000";
          window-decoration = false;
          copy-on-select = "clipboard";
        };
      };
    };
}