nixos-config/modules/system/devices/video/nouveau/default.nix

10 lines
298 B
Nix
Raw Normal View History

2025-02-02 13:42:37 -05:00
{ config, lib, pkgs, ... }:
2024-11-19 13:20:34 -05:00
{
2025-02-02 13:42:37 -05:00
options.system.video.nouveau.enable = lib.mkEnableOption "Enable the Nouveau graphics stack";
2024-11-19 13:20:34 -05:00
config = lib.mkIf config.system.video.nouveau.enable {
services.xserver.videoDrivers = [ "nouveau" ];
boot.kernelParams = [ "nouveau.config=NvGspRm=1" ];
};
}