DashNix/nix/hardware/overheating/overheating.nix

15 lines
279 B
Nix

{
imports =
[
./dsdt.nix
./firmware.nix
];
# special hardware modules
# TODO: needed?
boot.kernelModules = [ "kvm-amd" ];
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# for hyprdock
services.acpid.enable = true;
}