nixos-macbookpro/mods/gpu.nix
Elias Gasparis 8a32e2f31b update
2025-06-02 21:14:01 +08:00

22 lines
452 B
Nix

{ config, pkgs, lib, ... }:
{
# add comments back in later from forgejo
nixpkgs.config.allowUnfree = true;
nixpkgs.config.nvidia.acceptLicense = true;
hardware.graphics.enable = true;
services.xserver.videoDrivers = ["nvidia"];
hardware.nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
open = false;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.legacy_340;
};
}