home-manager @ 80ec14e7a22930a259607e4c8740b09303074d65

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