Browse Source

Update the NVIDIA module for unstable

main
parent
commit
52a2557c25
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 11
      README.org
  2. 9
      modules/nvidia.nix

11
README.org

@ -68,7 +68,7 @@ sudo nixos-rebuild switch --rollback
** Docker Container ** Docker Container
It's possible to use parts of this configuration using the container. By default, sandboxing is turned /off/ inside of the container, even though it's enabled in new installations. This can lead to differences between derivations built inside containers, versus those built without any containerization. This is especially true if a derivation relies on sandboxing to block sideloading of dependencies.
It's possible to use parts of this configuration using a container. By default, sandboxing is turned /off/ inside of the container, even though it's enabled in new installations. This can lead to differences between derivations built inside containers, versus those built without any containerization. This is especially true if a derivation relies on sandboxing to block sideloading of dependencies.
#+BEGIN_SRC conf :tangle Dockerfile #+BEGIN_SRC conf :tangle Dockerfile
# Derive from the official image. # Derive from the official image.
@ -1164,7 +1164,14 @@ in {
}; };
# Enable the NVIDIA drivers. # Enable the NVIDIA drivers.
services.xserver.videoDrivers = [ "modesetting" "nvidia" ];
services.xserver.videoDrivers = [ "nvidia" ];
# Fix screen tearing.
services.xserver.screenSection = ''
Option "metamodes" "nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On}"
Option "AllowIndirectGLXProtocol" "off"
Option "TripleBuffer" "on"
'';
# Configure `offload-mode'. # Configure `offload-mode'.
hardware.nvidia.prime = { hardware.nvidia.prime = {

9
modules/nvidia.nix

@ -22,7 +22,14 @@ in {
}; };
# Enable the NVIDIA drivers. # Enable the NVIDIA drivers.
services.xserver.videoDrivers = [ "modesetting" "nvidia" ];
services.xserver.videoDrivers = [ "nvidia" ];
# Fix screen tearing.
services.xserver.screenSection = ''
Option "metamodes" "nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On}"
Option "AllowIndirectGLXProtocol" "off"
Option "TripleBuffer" "on"
'';
# Configure `offload-mode'. # Configure `offload-mode'.
hardware.nvidia.prime = { hardware.nvidia.prime = {

Loading…
Cancel
Save