From e7be7c0617866647c4b7019e26837f154a100c46 Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Sun, 17 May 2026 10:51:27 +0200 Subject: feat(ghostty): add terminal configuration --- modules/programs/ghostty.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/programs/ghostty.nix (limited to 'modules/programs/ghostty.nix') diff --git a/modules/programs/ghostty.nix b/modules/programs/ghostty.nix new file mode 100644 index 0000000..10b366f --- /dev/null +++ b/modules/programs/ghostty.nix @@ -0,0 +1,18 @@ +{ + flake.modules.homeManager.ghostty = + { ... }: + { + programs.ghostty = { + enable = true; + settings = { + font-family = "JetBrains Mono"; + font-size = 13; + font-thicken = true; + theme = "Gruvbox Dark"; + background = "#000000"; + window-decoration = false; + copy-on-select = "clipboard"; + }; + }; + }; +} -- cgit v1.3.1