mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
19 lines
388 B
Nix
19 lines
388 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
../profiles/live-image.nix
|
|
../modules/apple-silicon.nix
|
|
];
|
|
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
hardware.asahi.extractPeripheralFirmware = false;
|
|
|
|
networking.wireless.enable = false;
|
|
|
|
networking.wireless.iwd = {
|
|
enable = true;
|
|
settings.General.EnableNetworkConfiguration = true;
|
|
};
|
|
|
|
networking.hostName = "nixos-live-aarch64";
|
|
}
|