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 = [
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix") # what is this
|
|
|
|
];
|
|
|
|
|
2023-11-17 07:17:12 +00:00
|
|
|
myFlake.nixos.hardware = {
|
|
|
|
cpu.intel.enable = true;
|
|
|
|
|
|
|
|
gpu.intel.enable = true;
|
|
|
|
gpu.nvidia.enable = true;
|
|
|
|
gpu.nvidia.prime = true;
|
|
|
|
|
|
|
|
misc.audio.enable = true;
|
|
|
|
misc.bluetooth.enable = true;
|
|
|
|
misc.fstrim.enable = true;
|
|
|
|
misc.tpm.enable = true;
|
|
|
|
};
|
|
|
|
|
2023-11-04 10:14:42 +00:00
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid"];
|
2023-10-07 08:19:15 +00:00
|
|
|
|
|
|
|
# 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;
|
|
|
|
}
|