2023-10-07 08:19:15 +00:00
|
|
|
{
|
2023-11-04 10:14:42 +00:00
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}: {
|
2023-10-07 08:19:15 +00:00
|
|
|
imports = [
|
|
|
|
../hardware/misc/audio.nix
|
|
|
|
../hardware/misc/bluetooth.nix
|
|
|
|
../hardware/misc/opengl.nix
|
2023-10-15 00:51:56 +00:00
|
|
|
../hardware/misc/tpm.nix
|
2023-10-07 08:19:15 +00:00
|
|
|
../hardware/cpu/intel.nix
|
|
|
|
../hardware/gpu/intel.nix
|
|
|
|
../hardware/gpu/nvidia.nix
|
|
|
|
../hardware/gpu/nvidia-prime.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"];
|
2023-10-07 08:19:15 +00:00
|
|
|
services.fstrim.enable = true;
|
|
|
|
|
|
|
|
# Nvidia PRIME
|
|
|
|
hardware.nvidia.prime = {
|
|
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
|
|
intelBusId = "PCI:0:2:0";
|
|
|
|
};
|
|
|
|
|
|
|
|
# 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.enp7s0.useDHCP = lib.mkDefault true;
|
|
|
|
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
|
|
|
}
|