Rename file

This commit is contained in:
Aaron Honeycutt 2022-06-14 20:53:06 +00:00
parent d6fdfedd00
commit ab30f02a5a

11
oryp6.nix Normal file
View file

@ -0,0 +1,11 @@
{ 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;
}