summaryrefslogtreecommitdiffstats
path: root/ghostty.nix
blob: fb5287fd66afe40fd4eb813b35fd6061cacdd7ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{
  programs.ghostty = {
    enable = true;
    settings = {
      link-url = true;
      background-opacity = 0.8;
      background-blur = true;
    };
  };
}