Add new file

This commit is contained in:
Aaron Honeycutt 2023-02-02 20:02:37 +00:00
parent 222eaf0fef
commit 8d15a6e629

17
systems/gaze16.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "gaze16";
# System76
hardware.system76.enableAll = true;
# NVIDIA
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
}