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

12 lines
199 B
Nix
Raw Permalink Normal View History

2024-06-07 11:37:13 +00:00
{lib, ...}: let
inherit (lib) types mkOption;
in {
options.wallpaper = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
Wallpaper path
'';
};
}