summaryrefslogtreecommitdiff
path: root/ghostty.nix
blob: 225db337dcc1567b076a4e8411a0efd15ad8538a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  pkgs,
  inputs,
  ...
}: {
  xdg.configFile."ghostty/config".text = ''
    theme=3024 Day
    window-decoration=false
    confirm-close-surface=false
    command=fish
    keybind = unconsumed:ctrl+tab=unbind
    font-family = iosevka
  '';

  xdg.configFile."ghostty/themes" = {
    source = ./ghostty-themes;
    recursive = true;
  };
}