17 lines
279 B
Nix
17 lines
279 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.apple-t2
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# t2-firmware dependencies
|
|
# REF: https://github.com/t2linux/nixos-t2-iso
|
|
python3
|
|
dmg2img
|
|
get-apple-firmware
|
|
];
|
|
}
|