all repos — nixfiles @ 68f44953449af2ad3565426e1716757fe7afc04b

System and user configuration, managed by nix and home-manager

modules/hardware/printing.nix (view raw)

1
2
3
4
5
6
7
8
9
10
{ config, pkgs, lib, ... }:

{ services.printing.enable = true;
  systemd.services.cups.wantedBy = lib.mkForce [];
  systemd.sockets.cups.wantedBy = [ "sockets.target" ];

  imports = [
    ../services/zeroconf.nix
  ];
}