2025-11-25 23:23:41 -06:00
|
|
|
{ pkgs, ... }:
|
2024-10-11 12:28:53 -05:00
|
|
|
|
|
|
|
|
let
|
|
|
|
|
c = pkgs.callPackage;
|
|
|
|
|
in
|
|
|
|
|
{
|
2024-11-19 22:43:13 -06:00
|
|
|
#default = iso;
|
|
|
|
|
#iso = top.self.nixosConfigurations.iso.config.system.build.isoImage;
|
|
|
|
|
#iso-beta = self.nixosConfigurations.iso-beta.config.system.build.isoImage;
|
|
|
|
|
aacs = c ./aacs.nix { };
|
|
|
|
|
brew = c ./homebrew.nix { };
|
|
|
|
|
create_ssl = c ./create_ssl.nix { };
|
2025-09-27 17:53:39 -05:00
|
|
|
gcc-tune = c ./gcc-tune.nix { };
|
2025-12-10 08:34:56 -06:00
|
|
|
#gen-build = c ./gen-build { };
|
2025-02-04 13:50:04 +00:00
|
|
|
hms = c ./hms { };
|
2024-11-19 22:43:13 -06:00
|
|
|
inject-darwin = c ./inject-darwin.nix { };
|
|
|
|
|
inject = c ./inject.nix { };
|
|
|
|
|
setup-ssh = c ./setup-ssh { };
|
|
|
|
|
upgrade-pg-cluster = c ./upgrade-pg-cluster.nix { };
|
2024-10-11 12:28:53 -05:00
|
|
|
}
|
2025-12-07 15:41:42 -06:00
|
|
|
// (
|
|
|
|
|
if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then
|
|
|
|
|
{
|
2025-12-07 16:07:34 -06:00
|
|
|
qemu-hook = c ./qemu-hook.nix { };
|
2025-12-07 15:41:42 -06:00
|
|
|
vfio_startup = c ./vfio_startup.nix { };
|
|
|
|
|
vfio_shutdown = c ./vfio_shutdown.nix { };
|
|
|
|
|
zim = c ./zim.nix { };
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ }
|
|
|
|
|
)
|