nyxi-installer/oryp6.nix
Aaron Honeycutt ab30f02a5a Rename file
2022-06-14 20:53:06 +00:00

11 lines
269 B
Nix

{ config, pkgs, ... }:
{
# NVIDIA
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
}