summaryrefslogtreecommitdiff
path: root/ghostty.nix
diff options
context:
space:
mode:
authorGabriel A. Giovanini <g.giovanini@gridx.de>2025-06-23 15:41:24 +0200
committerGabriel A. Giovanini <g.giovanini@gridx.de>2025-06-23 16:05:33 +0200
commit9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf (patch)
tree9400df8e05a8de8a7c0b227b1f7fba16783aa6e0 /ghostty.nix
downloadhome-manager-9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf.tar.gz
home-manager-9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf.tar.bz2
home-manager-9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf.zip
feat: Add configuration from private dotfiles repo
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;
+ };
+}