nix-config/config/hardware/physical.nix

14 lines
317 B
Nix
Raw Normal View History

# Configuration for actual physical machines
{config, ...}: {
hardware = {
enableRedistributableFirmware = true;
enableAllFirmware = true;
};
services = {
fwupd.enable = true;
smartd.enable = true;
2023-09-20 14:37:21 +02:00
thermald.enable = builtins.elem config.nixpkgs.hostPlatform.system ["x86_64-linux"];
};
}