nix-config/hosts/desktops/common/hardware.nix
2023-04-18 09:24:04 -03:00

18 lines
431 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
hardware = {
xpadneo.enable = true;
bluetooth.enable = true;
pulseaudio.enable = false; # Use pipewire instead
steam-hardware.enable = true; # Allow steam client to manage controllers
opengl = {
driSupport32Bit = true; # For OpenGL games
};
};
sound.enable = true;
security.rtkit.enable =
true; # Needed for pipewire to acquire realtime priority
}