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

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