aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/ghostty.nix
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-05-17 10:51:27 +0200
committerLeander Scherer <leander@schererleander.de>2026-05-28 22:42:06 +0200
commite7be7c0617866647c4b7019e26837f154a100c46 (patch)
tree260727403371039fb5b4c2125f37809cedd67033 /modules/programs/ghostty.nix
parentb1a94a3f85200eae58685624624f3798d32bc8a7 (diff)
feat(ghostty): add terminal configuration
Diffstat (limited to 'modules/programs/ghostty.nix')
-rw-r--r--modules/programs/ghostty.nix18
1 files changed, 18 insertions, 0 deletions
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";
+ };
+ };
+ };
+}