14 lines
304 B
Nix
14 lines
304 B
Nix
# Configuration for actual physical machines
|
|
{config, ...}: {
|
|
hardware = {
|
|
enableRedistributableFirmware = true;
|
|
enableAllFirmware = true;
|
|
};
|
|
|
|
services = {
|
|
fwupd.enable = true;
|
|
smartd.enable = true;
|
|
thermald.enable = builtins.elem config.nixpkgs.system ["x86_64-linux"];
|
|
};
|
|
}
|