2022-08-25 18:45:47 +03:00
|
|
|
{ pkgs, nixos-hardware, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
|
|
|
|
"${modulesPath}/installer/cd-dvd/channel.nix"
|
|
|
|
|
nixos-hardware.nixosModules.apple-t2
|
2022-10-02 17:56:05 +03:00
|
|
|
./common.nix
|
2022-08-25 18:45:47 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# ZFS is broken and prevents building without this
|
|
|
|
|
nixpkgs.config.allowBroken = true;
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
vim
|
|
|
|
|
];
|
|
|
|
|
}
|