From 563c1a6a7bbd90af3dc1290afc86cf1eb89c3989 Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Mon, 9 Mar 2026 17:05:46 +0100 Subject: [PATCH] fix ghostty theme on linux --- modules/common/theme.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/common/theme.nix b/modules/common/theme.nix index 558686f..3659eaa 100644 --- a/modules/common/theme.nix +++ b/modules/common/theme.nix @@ -1,4 +1,4 @@ -{ lib, ... }: { +{ lib, config, ... }: { options.theme = { batTheme = lib.mkOption { type = lib.types.str; @@ -8,7 +8,7 @@ ghosttyTheme = lib.mkOption { type = lib.types.str; - default = "Gruvbox Dark Hard"; + default = if config.onLinux then "GruvboxDarkHard" else "Gruvbox Dark Hard"; description = "Theme name for Ghostty."; }; };