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 shell-integration=fish
11 command=fish
12 keybind = unconsumed:ctrl+tab=unbind
13 font-family = iosevka
14 '';
15
16 xdg.configFile."ghostty/themes" = {
17 source = ./ghostty-themes;
18 recursive = true;
19 };
20}