add uefi package and iso builder
thanks to https://github.com/martiert/x13s-bios
This commit is contained in:
parent
3fa14acfdd
commit
0650514998
3 changed files with 88 additions and 0 deletions
|
@ -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; }
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue