feat(printing): add enable option

This commit is contained in:
2026-05-22 20:20:16 +02:00
parent c95913027a
commit a7ad2b141e

View File

@@ -1,15 +1,9 @@
{ { lib, config, ... }:
# services.avahi = {
# enable = true;
# nssmdns4 = true;
# openFirewall = true;
# };
services.printing = { {
enable = true; options.printing.enable = lib.mkEnableOption "printing";
# drivers = with pkgs; [
# cups-filters config = lib.mkIf config.printing.enable {
# cups-browsed services.printing.enable = true;
# ];
}; };
} }