mochi/nixos/profiles/role-gaming.nix

9 lines
186 B
Nix
Raw Normal View History

2024-06-20 13:03:44 -05:00
{ ... }:
{
# Enable module for NVIDIA graphics
mySystem.hardware.nvidia.enable = true;
2024-06-21 12:55:52 -05:00
# set xserver videodrivers for NVIDIA gpu
2024-06-20 13:03:44 -05:00
services.xserver.videoDrivers = [ "nvidia" ];
}