1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-10 23:00:39 +02:00

chore: address trace warnings

This commit is contained in:
oddlama 2024-07-07 00:17:24 +02:00
parent 9b25252bed
commit 3cb10af03c
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
3 changed files with 15 additions and 37 deletions

View file

@ -9,20 +9,18 @@ lib.optionalAttrs (!minimal) {
services.xserver.videoDrivers = lib.mkForce ["nvidia"];
hardware = {
nvidia = {
modesetting.enable = true;
nvidiaPersistenced = true;
nvidiaSettings = true;
open = true;
powerManagement.enable = true;
};
opengl = {
graphics = {
enable = true;
driSupport32Bit = true;
enable32Bit = true;
extraPackages = with pkgs; [
vaapiVdpau
nvidia-vaapi-driver
];
};
nvidia = {
modesetting.enable = true;
open = true;
powerManagement.enable = true;
};
};
}