This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/hardware/default.nix

16 lines
298 B
Nix
Raw Permalink Normal View History

2023-10-08 10:51:15 +01:00
{pkgs, ...}: {
2023-09-24 01:42:00 +01:00
hardware.opengl = {
enable = true;
2023-10-08 10:51:15 +01:00
extraPackages = [pkgs.libvdpau-va-gl];
2023-09-24 01:42:00 +01:00
driSupport32Bit = true;
};
hardware.steam-hardware.enable = true;
hardware.bluetooth.enable = true;
hardware.sane = {
enable = true;
2023-10-08 10:51:15 +01:00
extraBackends = [pkgs.sane-airscan];
2023-09-24 01:42:00 +01:00
};
}