{ inputs, self, config, lib, options, ... }: let cfg = config.nixfiles.outputs.packages; in { options.nixfiles.outputs.packages = { enable = lib.mkEnableOption "" // { description = '' Whether to generate the packages output. ''; default = true; }; }; config = lib.mkIf cfg.enable { perSystem = { system, inputs', self', pkgs, ... }: { }; }; }