nixos-config/modules/system/devices/video/nouveau/default.nix
2025-02-27 17:55:16 -05:00

9 lines
292 B
Nix

{ config, lib, ... }:
{
options.system.video.nouveau.enable = lib.mkEnableOption "Enable the Nouveau graphics stack";
config = lib.mkIf config.system.video.nouveau.enable {
services.xserver.videoDrivers = [ "nouveau" ];
boot.kernelParams = [ "nouveau.config=NvGspRm=1" ];
};
}