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

12 lines
199 B
Nix

{lib, ...}: let
inherit (lib) types mkOption;
in {
options.wallpaper = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
Wallpaper path
'';
};
}