NixOS-Config/system/modules/video/nouveau/default.nix

10 lines
238 B
Nix
Raw Normal View History

{ config, lib, ... }: {
options = {
drivers.nouveau.enable = lib.mkEnableOption "Enable proprietary Nvidia drivers";
};
config = lib.mkIf config.drivers.nvidia.enable {
services.xserver.videoDrivers = [ "nouveau" ];
};
}