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

13 lines
184 B
Nix
Raw Normal View History

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