System76 Gaze18 nvidia
System76 Gaze18 flake System76 Gaze18 fix System76 Gaze18 fix
This commit is contained in:
parent
5864256026
commit
28684889c8
|
@ -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;
|
||||
|
|
40
system76/gaze18/default.nix
Normal file
40
system76/gaze18/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in a new issue