conditionally turn on power management and modesetting when we are in sync mode
This commit is contained in:
parent
fd08b05aed
commit
e8e0e7dc37
|
@ -1,5 +1,4 @@
|
||||||
{ lib, ... }:
|
{ lib, config, ... }: {
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
../../../common/gpu/nvidia.nix
|
../../../common/gpu/nvidia.nix
|
||||||
../../../common/cpu/intel
|
../../../common/cpu/intel
|
||||||
|
@ -25,9 +24,21 @@
|
||||||
# required to make wireless work
|
# required to make wireless work
|
||||||
hardware.enableAllFirmware = lib.mkDefault true;
|
hardware.enableAllFirmware = lib.mkDefault true;
|
||||||
|
|
||||||
# fix suspend/resume screen corruption
|
# fix suspend/resume screen corruption in sync mode
|
||||||
#hardware.nvidia.powerManagement.enable = true;
|
hardware.nvidia.powerManagement =
|
||||||
|
lib.mkIf config.hardware.nvidia.prime.sync.enable {
|
||||||
|
enable = lib.mkDefault true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# fix screen tearing in sync mode
|
||||||
|
hardware.nvidia.modesetting =
|
||||||
|
lib.mkIf config.hardware.nvidia.prime.sync.enable {
|
||||||
|
enable = lib.mkDefault true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# silence ACPI "errors" at boot shown before NixOS stage 1 output (default is 4)
|
||||||
|
#boot.consoleLogLevel = 3;
|
||||||
|
|
||||||
# throttled vs. thermald
|
# throttled vs. thermald
|
||||||
# -----------------------
|
# -----------------------
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue