Revert "cups: Rename "browsing" config option to "advertise""

This reverts commit 48e65cec4ecd6bef08233460cf5ffedb023cc7c6.

+3 -3
+1 -1
nixos/doc/manual/release-notes/rl-unstable.xml
··· 57 57 <para> 58 58 Local printers are no longer shared or advertised by default. This behavior 59 59 can be changed by enabling <literal>services.printing.defaultShared</literal> 60 - or <literal>services.printing.advertise</literal> respectively. 60 + or <literal>services.printing.browsing</literal> respectively. 61 61 </para> 62 62 </listitem> 63 63
+2 -2
nixos/modules/services/printing/cupsd.nix
··· 80 80 ''; 81 81 }; 82 82 83 - advertise = mkOption { 83 + browsing = mkOption { 84 84 type = types.bool; 85 85 default = false; 86 86 description = '' ··· 285 285 286 286 DefaultShared ${if cfg.defaultShared then "Yes" else "No"} 287 287 288 - Browsing ${if cfg.advertise then "Yes" else "No"} 288 + Browsing ${if cfg.browsing then "Yes" else "No"} 289 289 290 290 WebInterface ${if cfg.webInterface then "Yes" else "No"} 291 291