diff --git a/oryp6 b/oryp6 new file mode 100644 index 0000000..c2544d9 --- /dev/null +++ b/oryp6 @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ + # NVIDIA + services.xserver.videoDrivers = [ "nvidia" ]; + hardware.opengl.enable = true; + hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable; + + # Allow Unfree + nixpkgs.config.allowUnfree = true; +}