summary refs log tree commit diff
path: root/nixos/modules/services/printing/cupsd.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-08-09 13:59:47 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-08-14 11:47:12 -0400
commitc0684888175476c74a9e3a6897c73e67a3bd95d9 (patch)
tree03af7306210e14fa2f62db8ddaa334e039c25822 /nixos/modules/services/printing/cupsd.nix
parent28040465be4d15bedd2ee9397973e670e2e5ec2c (diff)
downloadnixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.tar
nixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.tar.gz
nixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.tar.bz2
nixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.tar.lz
nixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.tar.xz
nixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.tar.zst
nixpkgs-c0684888175476c74a9e3a6897c73e67a3bd95d9.zip
nixos/cupsd: use socket-based activation by default
Make socket-based activation the
default (services.printing.startWhenNeeded)
Diffstat (limited to 'nixos/modules/services/printing/cupsd.nix')
-rw-r--r--nixos/modules/services/printing/cupsd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix
index 0f75a96be3c..48409b5c91d 100644
--- a/nixos/modules/services/printing/cupsd.nix
+++ b/nixos/modules/services/printing/cupsd.nix
@@ -127,7 +127,7 @@ in
 
       startWhenNeeded = mkOption {
         type = types.bool;
-        default = false;
+        default = true;
         description = ''
           If set, CUPS is socket-activated; that is,
           instead of having it permanently running as a daemon,