mirror of
https://github.com/ivabus/nixos
synced 2024-11-14 20:45:08 +03:00
14 lines
392 B
Nix
14 lines
392 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
# Include the results of the hardware scan.
|
||
|
./hardware-configuration.nix
|
||
|
# Include the necessary packages and configuration for Apple Silicon support.
|
||
|
<apple-silicon-support/apple-silicon-support>
|
||
|
];
|
||
|
|
||
|
# Use the systemd-boot EFI boot loader.
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = false;
|
||
|
}
|