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