levi: sync mode

This commit is contained in:
Sean Buckley 2022-10-09 00:42:19 -04:00
parent 3a353e863b
commit 204d4965ff

View file

@ -1,6 +1,6 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
let let
current-mode = "nvidia-mux"; current-mode = "nvidia";
constants = { constants = {
hardware.nvidia.prime.intelBusId = "PCI:0:2:0"; hardware.nvidia.prime.intelBusId = "PCI:0:2:0";
@ -51,8 +51,10 @@ let
### nvidia drivers disabled ### nvidia drivers disabled
# #
# Not well tested. Possibly Incomplete. # Not well tested. Possibly Incomplete.
# Won't allow external displays connected to nvidia GPU.
# #
# Shutting off Nvidia GPU would theoretically save power. # Shutting off Nvidia GPU would theoretically save power.
# I do not think this actually powers down the Nvidia GPU, just stops using it.
# #
boot.kernelParams = [ "module_blacklist=nouveau" ]; boot.kernelParams = [ "module_blacklist=nouveau" ];
}; };