nix/config/Wallpaper.nix

19 lines
429 B
Nix
Raw Normal View History

2024-06-30 00:20:19 +03:00
{ pkgs, lib, ... }: with lib; let
2024-08-22 04:51:56 +03:00
url = "https://i.imgur.com/0hghmnl.png";
sha256 = "0l963jwb40xx7prnr58yfj5lvqmqw9nifn970dhqvzlcbfq17nbp";
2024-08-22 04:55:14 +03:00
forceContrastText = true;
2024-06-25 04:04:39 +03:00
in {
options = {
module.wallpaper = {
2024-06-25 04:04:39 +03:00
forceContrastText = mkOption {
default = forceContrastText;
type = types.bool;
};
path = mkOption {
default = pkgs.fetchurl { inherit url sha256; };
type = types.path;
};
};
};
}