nixos-config/hosts/precision-5530/system/modules/graphics.nix

21 lines
296 B
Nix

{
pkgs,
lib,
config,
...
}: {
# Enable OpenGL
hardware.graphics = {
enable = true;
# extraPackages = with pkgs; [
# intel-media-sdk
# intel-ocl
# intel-compute-runtime
# ];
};
environment.systemPackages = with pkgs; [
lshw
];
}