1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-03-10 10:40:29 +01:00

fix ghostty theme on linux

This commit is contained in:
TheGeneralist 2026-03-09 17:05:46 +01:00
parent 8c73ef4505
commit 563c1a6a7b
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4

View file

@ -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.";
};
};