22 lines
333 B
Nix
22 lines
333 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
|
||
|
# imports
|
||
|
imports = [
|
||
|
../default.nix
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
# opengl
|
||
|
hardware.opengl = {
|
||
|
extraPackages = with pkgs; [
|
||
|
intel-media-driver
|
||
|
intel-vaapi-driver
|
||
|
vaapiVdpau
|
||
|
libvdpau-va-gl
|
||
|
];
|
||
|
};
|
||
|
|
||
|
# networking
|
||
|
networking.hostName = "talathiel";
|
||
|
}
|