nix-configs/systems/hp-omen.nix
2022-09-02 18:15:56 +00:00

15 lines
338 B
Nix

{ 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;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
}