boreal: nvidia driver changes

Use the open source driver, and enable modesetting (a requirement for
wayland)
This commit is contained in:
Antoine Martin 2024-11-07 15:20:15 +01:00
parent 8e6ecd3b62
commit 4ebe512e27

View file

@ -96,8 +96,14 @@
services.udev.packages = [pkgs.chrysalis]; services.udev.packages = [pkgs.chrysalis];
hardware.bluetooth = { hardware = {
enable = true; bluetooth = {
powerOnBoot = false; enable = true;
powerOnBoot = false;
};
nvidia = {
open = true;
modesetting.enable = true;
};
}; };
} }