summaryrefslogtreecommitdiffstats
path: root/ghostty.nix
blob: c669cf0d33f021cdb1d3f67d32bb8aad1183a2ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  config,
  pkgs,
  inputs,
  ...
}:
{
  programs.ghostty = {
    enable = true;
    settings = {
      shell-integration = "zsh";
      shell-integration-features = true;
      mouse-hide-while-typing = true;
      link-url = true;
      background-opacity = 0.8;
      background-blur = true;
      clipboard-read = "allow";
      clipboard-write = "allow";
      confirm-close-surface = false;
      auto-update = "off";

    };
  };
}