summary refs log tree commit diff stats
path: root/modules/hardware/printing.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hardware/printing.nix')
-rw-r--r--modules/hardware/printing.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/hardware/printing.nix b/modules/hardware/printing.nix
index beba72e..32aa403 100644
--- a/modules/hardware/printing.nix
+++ b/modules/hardware/printing.nix
@@ -1,6 +1,8 @@
 { config, pkgs, lib, ... }:
 
 { services.printing.enable = true;
+  systemd.services.cups.wantedBy = lib.mkForce [];
+  systemd.sockets.cups.wantedBy = [ "sockets.target" ];
 
   imports = [
     ../services/zeroconf.nix