aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.flake/home/programs/ghostty.nix.org
blob: c7cfa85a1ddf3233079a46b1aedd764049fe5ced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#+title: GhosTTY Configuration

This terminal emulator seems over-hyped, but I'm trying it anyways.
#+begin_src nix
  { config, pkgs, ... }:

  {
    programs.ghostty = {
      enable = true;
      enableZshIntegration = true;
      settings = {
        font-family = "SauceCodePro Nerd Font";
      };
    };
  }
#+end_src