blob: 32aa4038ddb7d9959ef38e37771f608fe0bafc8b (
plain)
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
];
}
|