17 lines
278 B
Nix
17 lines
278 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "laptop";
|
|
|
|
# Intel VA-API for GPU acceleration
|
|
hardware.opengl = {
|
|
enable = true;
|
|
extraPackages = with pkgs; [
|
|
intel-media-driver
|
|
libva-utils
|
|
];
|
|
};
|
|
|
|
services.xserver.videoDrivers = [ "intel" ];
|
|
}
|