mirror of
https://github.com/thegeneralist01/config.git
synced 2026-03-07 10:59:55 +01:00
15 lines
337 B
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.";
|
|
};
|
|
};
|
|
}
|