forked from mirrors/nixpkgs
cups: Rename "browsing" config option to "advertise"
This commit is contained in:
parent
116006702b
commit
48e65cec4e
|
@ -57,7 +57,7 @@ was accordingly renamed to <literal>bomi</literal>
|
|||
<para>
|
||||
Local printers are no longer shared or advertised by default. This behavior
|
||||
can be changed by enabling <literal>services.printing.defaultShared</literal>
|
||||
or <literal>services.printing.browsing</literal> respectively.
|
||||
or <literal>services.printing.advertise</literal> respectively.
|
||||
</para>
|
||||
</listitem>
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
browsing = mkOption {
|
||||
advertise = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
|
@ -285,7 +285,7 @@ in
|
|||
|
||||
DefaultShared ${if cfg.defaultShared then "Yes" else "No"}
|
||||
|
||||
Browsing ${if cfg.browsing then "Yes" else "No"}
|
||||
Browsing ${if cfg.advertise then "Yes" else "No"}
|
||||
|
||||
WebInterface ${if cfg.webInterface then "Yes" else "No"}
|
||||
|
||||
|
|
Loading…
Reference in a new issue