{ config, pkgs, lib, ...}: { options.dunst.enable = lib.mkEnableOption "Setup dunst notification"; config = lib.mkIf config.dunst.enable { services.dunst = { enable = true; settings = { global = { transparency = 10; font = "monospace 10"; }; }; }; }; }