Graphics
All checks were successful
Nix Build / build-nixos (push) Successful in 16m11s

This commit is contained in:
soraefir 2024-07-03 22:09:33 +02:00
parent 92d0dad938
commit 9356deca2c
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
4 changed files with 6 additions and 7 deletions

View File

@ -14,7 +14,7 @@
follow_mouse = 1 follow_mouse = 1
sensitivity = 0 # -0.5 # -1.0 - 1.0, 0 means no modification. sensitivity = 0
touchpad { touchpad {
natural_scroll=no natural_scroll=no

View File

@ -1 +1 @@
{ ... }: { imports = [ ./base ./boot ./fs ./opengl ./power ./udev ./virt ]; } { ... }: { imports = [ ./base ./boot ./fs ./graphics ./power ./udev ./virt ]; }

View File

@ -0,0 +1,4 @@
{ ... }: {
hardware.graphics.enable = true;
hardware.graphics.enable32Bit = true;
}

View File

@ -1,5 +0,0 @@
{ ... }: {
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
}