{ config, pkgs, lib, ... }: with lib; let cfg = config.vuizvui.user.profpatsch.programs.scanning; in { options.vuizvui.user.profpatsch.programs.scanning = { enable = mkEnableOption "scanning & simple-scan"; remoteScanners = mkOption { type = lib.types.lines; default = ""; description = '' See hardware.sane.extraBackends. Proxy, because I may want to change this option. ''; }; }; config = mkIf cfg.enable { environment.systemPackages = [ pkgs.simple-scan ]; hardware.sane = { enable = true; netConf = cfg.remoteScanners; }; }; }