2023-09-19 00:17:43 +00:00
|
|
|
{
|
2023-11-04 10:14:42 +00:00
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}: {
|
2023-09-19 00:17:43 +00:00
|
|
|
imports = [
|
2023-10-07 08:19:15 +00:00
|
|
|
../hardware/misc/audio.nix
|
|
|
|
../hardware/misc/bluetooth.nix
|
|
|
|
../hardware/misc/opengl.nix
|
|
|
|
../hardware/cpu/intel.nix
|
|
|
|
../hardware/gpu/amd.nix
|
2023-09-19 00:17:43 +00:00
|
|
|
(modulesPath + "/hardware/network/broadcom-43xx.nix")
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix") # what is this
|
|
|
|
];
|
|
|
|
|
2023-11-04 10:14:42 +00:00
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci"];
|
2023-09-19 00:17:43 +00:00
|
|
|
|
2023-10-15 00:51:56 +00:00
|
|
|
# Options from github:NixOS/nixos-hardware
|
2023-11-04 10:14:42 +00:00
|
|
|
boot.kernelParams = ["hid_apple.iso_layout=0"];
|
2023-10-15 00:51:56 +00:00
|
|
|
hardware.facetimehd.enable = true; # TODO: Camera already works before adding this, not sure what is the point...
|
|
|
|
|
2023-09-19 00:17:43 +00:00
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
# networking.interfaces.enp4s0f0.useDHCP = lib.mkDefault true;
|
|
|
|
# networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
|
2023-11-04 10:14:42 +00:00
|
|
|
}
|