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

15 lines
337 B
Nix

{ lib, ... }: {
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 = "Gruvbox Dark Hard";
description = "Theme name for Ghostty.";
};
};
}