nix-configs/hosts/x86_64/gaze16-3050.nix
2024-01-31 08:00:36 -07:00

17 lines
397 B
Nix

{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "gaze16-3050";
# 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;
}