nixos-dotfiles/hosts/titan/hardware/nvidia.nix
Alex Stan 13d7ab12d0 some stuff and reorganisation
Signed-off-by: Alex Stan <90788596+Ultra980@users.noreply.github.com>

git merge is ez with meld
2023-09-19 17:45:56 +03:00

19 lines
450 B
Nix

inputs: { config, pkgs, lib, ... }: {
# NVIDIA config
services.xserver.videoDrivers = [ "nvidia" ];
hardware = {
opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
nvidia = {
package = config.boot.kernelPackages.nvidiaPackages.stable;
modesetting.enable = true;
powerManagement.enable = true;
open = true;
nvidiaSettings = true;
};
};
}