nix/config/Wallpaper.nix

22 lines
514 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
with lib;
let
2024-10-28 23:13:56 +03:00
url = "https://i.imgur.com/3fJXekt.jpeg";
sha256 = "sha256-3ZyFZwWuVg4oXZ0zfN2LuPgf7KEFdTS3zWd1FYScOdQ=";
2024-10-29 11:44:43 +03:00
forceContrastText = true;
in
{
options = {
module.wallpaper = {
forceContrastText = mkOption {
default = warnIf forceContrastText "Style : Forced text contrast." forceContrastText;
type = types.bool;
};
path = mkOption {
default = pkgs.fetchurl { inherit url sha256; };
type = types.path;
};
};
};
2024-06-25 04:04:39 +03:00
}