This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/hardware.nix

18 lines
432 B
Nix
Raw Normal View History

2024-03-24 16:15:15 +01:00
{ config, lib, pkgs, ... }: {
# hardware
hardware.opengl.enable = true;
hardware.enableRedistributableFirmware = true;
# hardware logitech
hardware.logitech.wireless.enable = true;
hardware.logitech.wireless.enableGraphical = true;
# enable bluetooth
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# power management
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}