This commit is contained in:
Aaron Honeycutt 2023-05-12 16:33:24 -06:00
parent 68d9bf636a
commit 8d3c3f5464
8 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "hp-omen";
# NVIDIA
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
## Enable 32 Bit libraries for applications like Steam
hardware.opengl.driSupport32Bit = true;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
environment.systemPackages =
with pkgs;
[
steam
];
}