{ config, pkgs, ... }: let nvidia_x11 = config.boot.kernelPackages.nvidia_x11; in { services.xserver.videoDrivers = [ "nvidia" ]; boot = { blacklistedKernelModules = [ "nouveau" ]; extraModulePackages = [ nvidia_x11 ]; }; environment.systemPackages = [ nvidia_x11 ]; nixpkgs.config.allowUnfree = true; services.compton = { enable = true; }; }