System76 Gaze18 nvidia

System76 Gaze18 flake

System76 Gaze18 fix

System76 Gaze18 fix
This commit is contained in:
Matteo Bongiovanni 2024-06-16 16:45:50 +02:00 committed by mergify[bot]
parent 5864256026
commit 28684889c8
2 changed files with 41 additions and 0 deletions

View file

@ -250,6 +250,7 @@
supermicro-x10sll-f = import ./supermicro/x10sll-f;
supermicro-x12scz-tln4f = import ./supermicro/x12scz-tln4f;
system76 = import ./system76;
system76-gaze18 = import ./system76/gaze18;
system76-darp6 = import ./system76/darp6;
toshiba-swanky = import ./toshiba/swanky;
tuxedo-infinitybook-v4 = import ./tuxedo/infinitybook/v4;

View file

@ -0,0 +1,40 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
];
boot.initrd.kernelModules = [ "nvidia" ];
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
vaapiVdpau
];
};
services.xserver.videoDrivers = ["nvidia"];
hardware.nvidia = {
modesetting.enable = true;
powerManagement.finegrained = true;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;
prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
offload = {
enable = true;
enableOffloadCmd = true;
};
};
};
}