summaryrefslogtreecommitdiff
path: root/users/kassouni/ghostty.nix
diff options
context:
space:
mode:
authorAlexander Kassouni <alex@kassouni.net>2026-07-14 22:45:47 -0700
committerAlexander Kassouni <alex@kassouni.net>2026-07-14 22:45:47 -0700
commit23ba623e405d0aa8d554274aacd019d7a015aa9d (patch)
treefec751fc63de4ec026d04144c30ce95d8dba80ad /users/kassouni/ghostty.nix
X11 is so back
Diffstat (limited to 'users/kassouni/ghostty.nix')
-rw-r--r--users/kassouni/ghostty.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/users/kassouni/ghostty.nix b/users/kassouni/ghostty.nix
new file mode 100644
index 0000000..b25d8d0
--- /dev/null
+++ b/users/kassouni/ghostty.nix
@@ -0,0 +1,10 @@
+{ config, ... }:
+{
+ programs.ghostty = {
+ enable = true;
+ settings = {
+ theme = "Ayu";
+ font-family = config.theme.font.family;
+ };
+ };
+}