nixos-x13s/packages/part.nix

21 lines
385 B
Nix
Raw Normal View History

{
inputs,
lib,
withSystem,
...
}:
2024-01-22 12:47:25 -05:00
{
perSystem =
{ pkgs, ... }:
{
packages = rec {
uefi = pkgs.callPackage ./uefi.nix { };
uefi-usbiso = pkgs.callPackage ./uefi-usbiso.nix { inherit uefi; };
};
};
2024-01-22 12:47:25 -05:00
flake.packages.aarch64-linux = withSystem "aarch64-linux" (
{ pkgs, ... }: import ./default.nix { inherit inputs lib pkgs; }
2024-01-22 12:47:25 -05:00
);
}