nix-config/modules/home-manager/wallpaper.nix

12 lines
184 B
Nix
Raw Normal View History

2023-12-27 22:49:54 +01:00
{lib, ...}: let
inherit (lib) types mkOption;
in {
options.wallpaper = mkOption {
type = types.path;
default = "";
description = ''
Wallpaper path
'';
};
}