nix-configs/systems/oryp6.nix
2022-09-02 18:16:16 +00:00

14 lines
335 B
Nix

{ config, pkgs, ... }:
{
# Name your host machine
networking.hostName = "oryp6";
# NVIDIA
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
# Allow Unfree
nixpkgs.config.allowUnfree = true;
}