This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/talathiel/configuration.nix

22 lines
333 B
Nix
Raw Permalink Normal View History

2024-03-24 16:15:15 +01:00
{ 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";
}