This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
2023-04-09 11:12:23 +02:00

20 lines
605 B
Nix

{ pkgs, ... }: {
services.xserver.videoDrivers = [ "nvidia" ];
# services.xserver = {
# enable = true;
# videoDrivers = [ "nvidia" ];
# displayManager = {
# defaultSession = "hyprland";
# sddm = { enable = true; };
# };
# libinput.enable = true; # touchpad support
# layout = "de";
# xkbOptions = "ctrl:nocaps";
# };
# services.xserver.screenSection = ''
# Option "metamodes" "nvidia-auto-select +0+0 {ForceFullCompositionPipeline=On}"
# Option "AllowIndirectGLXProtocol" "off"
# Option "TripleBuffer" "on"
# '';
}