flocon/modules/theme/default.nix

19 lines
488 B
Nix
Raw Normal View History

{lib, ...}: {
options.theme = {
scheme = lib.mkOption {
description = ''
Name of the tinted-scheming color scheme to use.
'';
type = lib.types.string;
example = lib.literalExpression "catppuccin-frappe";
};
wallpaper = lib.mkOption {
description = ''
Location of the wallpaper that will be used throughout the system.
'';
type = lib.types.path;
example = lib.literalExpression "./wallpaper.png";
};
};
}