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

15 lines
391 B
Nix

{ lib, config, ... }: {
options.theme = {
batTheme = lib.mkOption {
type = lib.types.str;
default = "gruvbox-dark";
description = "Theme name for bat.";
};
ghosttyTheme = lib.mkOption {
type = lib.types.str;
default = if config.onLinux then "GruvboxDarkHard" else "Gruvbox Dark Hard";
description = "Theme name for Ghostty.";
};
};
}