mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
updated nvidia setting
This commit is contained in:
parent
751f8e53fd
commit
0eebd14349
2 changed files with 11 additions and 3 deletions
|
@ -68,6 +68,11 @@
|
|||
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
hardware.graphics.enable = true;
|
||||
hardware.nvidia = {
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
modesetting.enable = true;
|
||||
open = false;
|
||||
};
|
||||
|
||||
networking = {
|
||||
nat = {
|
||||
|
|
|
@ -43,9 +43,12 @@
|
|||
};
|
||||
hardware.graphics.enable = true;
|
||||
|
||||
hardware.nvidia = {
|
||||
# Optionally, you may need to select the appropriate driver version for your specific GPU.
|
||||
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
hardware.nvidia.modesetting.enable = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
modesetting.enable = true;
|
||||
open = false;
|
||||
};
|
||||
|
||||
environment.sessionVariables = {
|
||||
# Resolves jellyfin black screen under hyprland
|
||||
|
|
Loading…
Reference in a new issue