11.stylix/modules/wpaperd/hm.nix
mham 00a11ba2f0
wpaperd: init (#383)
Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2024-05-26 18:29:37 +01:00

9 lines
250 B
Nix

{ config, lib, ... }:
{
options.stylix.targets.wpaperd.enable = config.lib.stylix.mkEnableTarget "wpaperd" true;
config = lib.mkIf config.stylix.targets.wpaperd.enable {
programs.wpaperd.settings.any.path = "${config.stylix.image}";
};
}