flocon/modules/theme/default.nix

16 lines
289 B
Nix
Raw Normal View History

{
lib,
config,
...
}: {
options.theme = {
wallpaper = lib.mkOption {
description = ''
Location of the wallpaper that will be used throughout the system.
'';
type = lib.types.path;
example = lib.literalExpression "./wallpaper.png";
};
};
}