summaryrefslogtreecommitdiff
path: root/common/modules/terminal/ghostty.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/modules/terminal/ghostty.nix')
-rw-r--r--common/modules/terminal/ghostty.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/common/modules/terminal/ghostty.nix b/common/modules/terminal/ghostty.nix
index c47e991..9c74e2a 100644
--- a/common/modules/terminal/ghostty.nix
+++ b/common/modules/terminal/ghostty.nix
@@ -11,7 +11,15 @@ in
enable = true;
enableFishIntegration = true;
settings = {
- theme = lib.optionalString config.beeMods.matugen.enable "matugen";
+ theme =
+ if
+ config.beeMods.matugen.enable
+ && config.beeMods.windowManagers.beeConfig.enable
+ && !config.beeMods.windowManagers.noctalia
+ then
+ [ "matugen" ]
+ else
+ [ "noctalia" ];
font-family = cfg.font.family;
font-size = cfg.font.size;