mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-06 01:48:50 +08:00
mkDefault consistency
This commit is contained in:
@@ -10,8 +10,8 @@
|
|||||||
hardware = {
|
hardware = {
|
||||||
nvidia = {
|
nvidia = {
|
||||||
prime = {
|
prime = {
|
||||||
intelBusId = "PCI:0:2:0";
|
intelBusId = lib.mkDefault "PCI:0:2:0";
|
||||||
nvidiaBusId = "PCI:1:0:0";
|
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# required to make wireless work
|
# required to make wireless work
|
||||||
hardware.enableAllFirmware = true;
|
hardware.enableAllFirmware = lib.mkDefault true;
|
||||||
|
|
||||||
# throttled vs. thermald
|
# throttled vs. thermald
|
||||||
# -----------------------
|
# -----------------------
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
hardware = {
|
hardware = {
|
||||||
nvidia = {
|
nvidia = {
|
||||||
prime = {
|
prime = {
|
||||||
intelBusId = "PCI:0:2:0";
|
intelBusId = lib.mkDefault "PCI:0:2:0";
|
||||||
nvidiaBusId = "PCI:1:0:0";
|
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# required to make wireless work
|
# required to make wireless work
|
||||||
hardware.enableAllFirmware = true;
|
hardware.enableAllFirmware = lib.mkDefault true;
|
||||||
|
|
||||||
# throttled vs. thermald
|
# throttled vs. thermald
|
||||||
# -----------------------
|
# -----------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user