Files
nixos/system/modules/hardware.nix
2026-02-22 19:57:00 +00:00

13 lines
175 B
Nix

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