{ lib, config, True, ... }: with lib; let cfg = config.module.services.printing; in { options = { module.services.printing = { enable = mkEnableOption ""; }; }; config = mkIf cfg.enable { services.printing = True // { drivers = with pkgs; [ epson_201207w ]; }; }; }