mirror of
https://github.com/Ascyii/nixos.git
synced 2025-12-31 22:44:23 -05:00
21 lines
314 B
Nix
21 lines
314 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
########## TEsting
|
|
|
|
# Load nvidia driver for Xorg and Wayland
|
|
services.steam.enable = true;
|
|
services.xserver.videoDrivers = ["nvidia"];
|
|
|
|
# Enable OpenGL
|
|
# Optional nvidia
|
|
hardware.graphics = {
|
|
enable = true;
|
|
};
|
|
|
|
hardware.nvidia = {
|
|
modesetting.enable = true;
|
|
open = false;
|
|
};
|
|
};
|