add hardware

This commit is contained in:
Aditya 2024-04-10 23:01:45 +05:30
parent 97bd1adc9e
commit 495a6e127b
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 10 additions and 6 deletions

View file

@ -18,12 +18,6 @@
# Enable Bluetooth
# Allow non-free firmware
hardware.firmware = with pkgs; [firmwareLinuxNonfree];
hardware.opengl = {
enable = true;
extraPackages = with pkgs; [vaapiIntel vaapiVdpau libvdpau-va-gl intel-media-driver];
};
# Bootloader.

View file

@ -3,6 +3,7 @@
./bluetooth
./bootloader
./filesystem
./hardware
./kernel
];
}

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
hardware = {
firmware = with pkgs; [firmwareLinuxNonfree];
opengl = {
enable = true;
extraPackages = with pkgs; [vaapiIntel vaapiVdpau libvdpau-va-gl intel-media-driver];
};
};
}