summaryrefslogtreecommitdiffstats
path: root/ghostty.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
committerSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
commitf351ef00f77e5ea4d082a7eff86d7845dad7d9e0 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /ghostty.nix
parentbluetooth (diff)
downloadnixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.gz
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.bz2
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.zip
remove all
Diffstat (limited to 'ghostty.nix')
-rw-r--r--ghostty.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/ghostty.nix b/ghostty.nix
deleted file mode 100644
index c598066..0000000
--- a/ghostty.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- config,
- pkgs,
- inputs,
- ...
-}: {
- programs.ghostty = {
- enable = true;
- settings = {
- shell-integration = "fish";
- shell-integration-features = true;
- mouse-hide-while-typing = true;
- cursor-click-to-move = true;
- mouse-shift-capture = true;
- scrollback-limit = 10000;
- link-url = true;
- link-previews = true;
- background-opacity = 0.8;
- background-blur = true;
- window-inherit-working-directory = true;
- window-save-state = "always";
- copy-on-select = "clipboard";
- clipboard-read = "allow";
- clipboard-write = "allow";
- confirm-close-surface = false;
- auto-update = "off";
- };
- };
-}