20 lines
528 B
Nix
20 lines
528 B
Nix
# Download the wallpaper here.
|
|
{ pkgs, lib, ... }:
|
|
let
|
|
url = "https://i.imgur.com/4ChfqFU.jpeg";
|
|
sha256 = "sha256-I6Vm975/H7NBpcYGQUh1Ed2KN1O1CK5jChwkzPcYWv8=";
|
|
forceContrastText = false;
|
|
in
|
|
{
|
|
options.module.wallpaper = {
|
|
forceContrastText = lib.mkOption {
|
|
default = lib.warnIf forceContrastText "Wallpaper: Forced text contrast." forceContrastText;
|
|
type = lib.types.bool;
|
|
};
|
|
path = lib.mkOption {
|
|
default = pkgs.fetchurl { inherit url sha256; };
|
|
type = lib.types.path;
|
|
};
|
|
};
|
|
}
|