Files
nixos/system/modules/hardware.nix

12 lines
150 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ config, pkgs, ... }:
{
hardware = {
bluetooth.enable = true;
opengl = {
enable = true;
driSupport32Bit = true;
};
};
}