From 5711841421f4614177391a74ab58c8df2aa2a3bf Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 18 Jun 2025 17:34:15 +0200 Subject: [PATCH] ghostty --- modules/common.nix | 1 + modules/home/ghostty.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/home/ghostty.nix diff --git a/modules/common.nix b/modules/common.nix index 8bcfe32..82b4fc9 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -26,6 +26,7 @@ ./home/home-manager.nix # Base user environment ./home/hyprlock.nix # Hyprlock screen lock user config ./home/rofi.nix # Rofi user config + ./home/ghostty.nix # Ghostty user config ]; }; diff --git a/modules/home/ghostty.nix b/modules/home/ghostty.nix new file mode 100644 index 0000000..57e1f13 --- /dev/null +++ b/modules/home/ghostty.nix @@ -0,0 +1,10 @@ +{ + programs.ghostty = { + enable = true; + enableFishIntegration = true; + settings = { + "font" = "Intel One Mono"; + "theme" = "gruvbox-dark"; + }; + }; +}