10 lines
242 B
Nix
10 lines
242 B
Nix
{ pkgs, nixos-hardware, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
"${modulesPath}/installer/cd-dvd/channel.nix"
|
|
nixos-hardware.nixosModules.apple-t2
|
|
./common.nix
|
|
];
|
|
}
|