Files
nixos/system/modules/hardware.nix
2026-02-24 23:27:24 +00:00

12 lines
150 B
Nix

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