nixos-config/modules/hardware.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2020-02-17 17:00:59 +04:00
{ pkgs, config, lib, ... }:
2021-01-21 22:13:53 +04:00
with rec { inherit (config) device deviceSpecific; };
2020-02-17 17:00:59 +04:00
with deviceSpecific; {
hardware.enableRedistributableFirmware = true; # For some unfree drivers
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true; # For steam
hardware.opengl.package = pkgs.mesa_drivers;
2020-02-17 17:00:59 +04:00
hardware.bluetooth.enable = true;
2020-11-22 11:41:13 +04:00
hardware.bluetooth.package = pkgs.bluezFull;
2020-02-17 17:00:59 +04:00
2021-01-21 22:13:53 +04:00
hardware.sane.enable = true;
2020-12-24 16:19:24 +04:00
services.saned.enable = true;
2020-02-17 17:00:59 +04:00
services.logind.lidSwitchExternalPower = "ignore";
services.logind.extraConfig = "HandlePowerKey=suspend";
2021-01-21 22:13:53 +04:00
2020-02-17 17:00:59 +04:00
sound.enable = true;
hardware.pulseaudio = {
enable = true;
2020-08-04 19:03:41 +04:00
package = pkgs.pulseaudioFull.overrideAttrs (oa: {
patches = [
(pkgs.fetchurl {
url =
"https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/239.diff";
sha256 = "07qrpqwvn9sr87z2kn1yaza5bs9ivywd7sl194zwphlq94xrlzdf";
})
];
});
2020-02-17 17:00:59 +04:00
support32Bit = true;
extraConfig = ''
load-module module-native-protocol-tcp auth-ip-acl=127.0.0.1
load-module module-bluetooth-policy auto_switch=2
2020-02-17 17:00:59 +04:00
'';
};
}