summaryrefslogtreecommitdiffstats
path: root/ghostty.nix
blob: 3fda03403907ab4c720f95d049d2644a36e872b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  config,
  pkgs,
  inputs,
  ...
}:
{
  programs.ghostty = {
    enable = true;
    settings = {
      link-url = true;
      background-opacity = 0.8;
      background-blur = true;

    };
  };
}