summary refs log tree commit diff
path: root/nixos/modules/services/printing
diff options
context:
space:
mode:
authorJascha Geerds <jg@ekby.de>2015-05-10 20:47:50 +0200
committerJascha Geerds <jg@ekby.de>2015-05-10 20:47:50 +0200
commit19dbe42aeb762ec6ddae9e6af20959424857703a (patch)
tree15b510628ba68eb470f0bce1adbd52aa056940f8 /nixos/modules/services/printing
parent2818017347433bd222a6a65003bdafc5a940e393 (diff)
downloadnixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.tar
nixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.tar.gz
nixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.tar.bz2
nixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.tar.lz
nixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.tar.xz
nixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.tar.zst
nixpkgs-19dbe42aeb762ec6ddae9e6af20959424857703a.zip
Revert "cups: Rename "browsing" config option to "advertise""
This reverts commit 48e65cec4ecd6bef08233460cf5ffedb023cc7c6.
Diffstat (limited to 'nixos/modules/services/printing')
-rw-r--r--nixos/modules/services/printing/cupsd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix
index d7f87413e6c..fd9589883ed 100644
--- a/nixos/modules/services/printing/cupsd.nix
+++ b/nixos/modules/services/printing/cupsd.nix
@@ -80,7 +80,7 @@ in
         '';
       };
 
-      advertise = mkOption {
+      browsing = mkOption {
         type = types.bool;
         default = false;
         description = ''
@@ -285,7 +285,7 @@ in
 
         DefaultShared ${if cfg.defaultShared then "Yes" else "No"}
 
-        Browsing ${if cfg.advertise then "Yes" else "No"}
+        Browsing ${if cfg.browsing then "Yes" else "No"}
 
         WebInterface ${if cfg.webInterface then "Yes" else "No"}