Upload New File

This commit is contained in:
Aaron Honeycutt 2022-08-21 23:15:55 +00:00
parent a1d6f80c0c
commit a1bce711c1

11
systems/hp-omen.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;
}