13 lines
157 B
Nix
13 lines
157 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
hardware = {
|
|
bluetooth.enable = true;
|
|
|
|
opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
};
|
|
}
|