1
0
Fork 0

GPU: fix collision with Intel drivers

This commit is contained in:
Aires 2024-10-24 17:03:02 -04:00
parent d374e94b04
commit abd29996c4
3 changed files with 15 additions and 18 deletions

View file

@ -193,10 +193,7 @@ in
vpn = {
enable = true;
privateKey = config.secrets.services.protonvpn.privateKey;
countries = [
"Norway"
"Netherlands"
];
countries = [ "Netherlands" ];
};
};
ssh = {

View file

@ -20,13 +20,13 @@ in
hardware.graphics = {
enable = true;
extraPackages = [
pkgs.intel-media-driver
pkgs.unstable.vpl-gpu-rt
extraPackages = with pkgs; [
intel-media-driver
onevpl-intel-gpu
];
extraPackages32 = with pkgs.driversi686Linux; [
intel-media-driver
pkgs.unstable.vpl-gpu-rt
onevpl-intel-gpu
];
};
};