yep, more dotfiles
1{ pkgs-per-system }: 2 3{ lib 4, ... 5}@pkgs: 6 7let 8 apps = { 9 flash-installer-iso-x86_64-linux = import ./flash-installer.nix pkgs-per-system.x86_64-linux pkgs; 10 }; 11in 12 13lib.mapAttrs (_: program: { type = "app"; inherit program; }) apps