nix-conf/system/modules/hardware.nix
2024-03-26 23:45:56 +04:00

13 lines
157 B
Nix

{ config, pkgs, ... }:
{
hardware = {
bluetooth.enable = true;
opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
};
}