2024-10-01 09:54:43 +00:00
|
|
|
{lib, ...}: {
|
2024-09-29 23:19:48 +00:00
|
|
|
options.theme = {
|
2024-10-01 09:54:43 +00:00
|
|
|
scheme = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Name of the tinted-scheming color scheme to use.
|
|
|
|
'';
|
|
|
|
type = lib.types.string;
|
|
|
|
example = lib.literalExpression "catppuccin-frappe";
|
|
|
|
};
|
2024-09-29 23:19:48 +00:00
|
|
|
wallpaper = lib.mkOption {
|
|
|
|
description = ''
|
|
|
|
Location of the wallpaper that will be used throughout the system.
|
|
|
|
'';
|
|
|
|
type = lib.types.path;
|
|
|
|
example = lib.literalExpression "./wallpaper.png";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|