add uefi package and iso builder

thanks to https://github.com/martiert/x13s-bios
This commit is contained in:
Adam Stephens 2024-05-01 10:08:29 -04:00
parent 3fa14acfdd
commit 0650514998
No known key found for this signature in database
3 changed files with 88 additions and 0 deletions

View file

@ -1,5 +1,14 @@
{ lib, withSystem, ... }:
{
perSystem =
{ pkgs, ... }:
{
packages = rec {
uefi = pkgs.callPackage ./uefi.nix { };
uefi-usbiso = pkgs.callPackage ./uefi-usbiso.nix { inherit uefi; };
};
};
flake.packages.aarch64-linux = withSystem "aarch64-linux" (
{ pkgs, ... }: import ./default.nix { inherit lib pkgs; }
);