diff options
author | Gabriel A. Giovanini <g.giovanini@gridx.de> | 2025-06-23 15:41:24 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <g.giovanini@gridx.de> | 2025-06-23 16:05:33 +0200 |
commit | 9fcdfe5d6b1c5d518d79345571038d90b6bd6dbf (patch) | |
tree | 9400df8e05a8de8a7c0b227b1f7fba16783aa6e0 /ghostty.nix | |
download | home-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.nix | 20 |
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; + }; +} |