nix/option/Wallpaper.nix

20 lines
527 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
# Download the wallpaper here.
{ pkgs, lib, ... }:
let
2024-12-22 12:43:18 +03:00
url = "https://i.imgur.com/6fJxpYe.png";
sha256 = "sha256-c4pXpPSoIL4CVBLezEYNHVWtioVtgkg2w6bWsWZw+nc=";
forceContrastText = false;
in
2024-11-04 04:37:29 +03:00
{
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;
};
};
2024-11-04 04:37:29 +03:00
}