summaryrefslogtreecommitdiff
path: root/ghostty.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ghostty.nix')
-rw-r--r--ghostty.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/ghostty.nix b/ghostty.nix
new file mode 100644
index 0000000..205b757
--- /dev/null
+++ b/ghostty.nix
@@ -0,0 +1,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;
+ };
+}